﻿

:root {
    --red: #cd1628;
    --ink: #202022;
    --muted: #626268;
    --line: #e6e6e8;
    --pale: #f5f5f6;
    --green: #177159
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    margin: 0;
    background: #fff;
    color: var(--ink);
    font-family: IRANYekan, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.95
}

a {
    color: inherit;
    text-decoration: none
}

button,
input {
    font: inherit
}

a,
button,
input,
summary {
    -webkit-tap-highlight-color: transparent
}

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible,
    input:focus-visible {
        outline: 3px solid #147aab;
        outline-offset: 5px
    }

button,
a {
    touch-action: manipulation
}

.wrap {
    width: min(1200px, calc(100% - 64px));
    margin: auto
}

header {
    position: sticky;
    top: 0;
    background: #fffffff5;
    backdrop-filter: blur(12px);
    z-index: 10;
    border-bottom: 1px solid var(--line)
}

.nav {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    font-weight: 700;
    font-size: 25px;
    white-space: nowrap
}

    .brand b {
        color: var(--red)
    }

    .brand small {
        font-size: 12px;
        display: block;
        font-weight: 400;
        line-height: 1;
        color: var(--muted)
    }

nav {
    display: flex;
    gap: 28px;
    font-size: 14px
}

    nav a:hover {
        color: var(--red)
    }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: var(--red);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    line-height: 1.8;
    transition: background .15s
}

    .btn:hover {
        background: #a90f20
    }

    .btn.light {
        background: #fff;
        color: var(--ink);
        border-color: var(--line)
    }

        .btn.light:hover {
            background: var(--pale)
        }

.eyebrow {
    color: var(--red);
    font-size: 14px;
    font-weight: 700;
    display: block;
    margin-bottom: 18px
}

.hero {
    padding: 65px 0 48px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 58px;
    align-items: center
}

h1 {
    font-size: clamp(36px, 4.3vw, 57px);
    line-height: 1.55;
    letter-spacing: -1.6px;
    margin: 0 0 20px
}

    h1 em {
        font-style: normal;
        color: var(--red)
    }

p {
    margin: 0 0 18px
}

.lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 2.15
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-note {
    font-size: 14px;
    color: var(--muted);
    margin-top: 17px
}

.art {
    margin: 0;
    position: relative
}

    .art img {
        display: block;
        width: 100%;
        height: 540px;
        object-fit: cover;
        border-radius: 10px
    }

    .art figcaption {
        font-size: 12px;
        color: var(--muted);
        margin-top: 9px
    }

.art-label {
    position: absolute;
    bottom: 65px;
    right: -22px;
    background: #fff;
    padding: 18px 24px;
    box-shadow: 0 12px 45px #0002;
    border-right: 4px solid var(--red);
    border-radius: 6px;
    font-weight: 700
}

    .art-label small {
        display: block;
        color: var(--muted);
        font-size: 13px;
        font-weight: 400
    }

.disciplines {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
    border-top: 1px solid var(--line);
    margin-top: 38px;
    padding-top: 24px;
    font-size: 14px
}

    .disciplines span:first-child {
        color: var(--muted)
    }

section {
    padding: 76px 0
}

.section-head {
    max-width: 710px;
    margin-bottom: 34px
}

h2 {
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.6;
    margin: 0 0 12px;
    letter-spacing: -.65px
}

h3 {
    font-size: 21px;
    margin: 0 0 10px;
    line-height: 1.8
}

.muted {
    color: var(--muted)
}

.tint {
    background: var(--pale)
}

.columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.route {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff
}

    .route.good {
        border-top: 4px solid var(--green)
    }

    .route.bad {
        border-top: 4px solid var(--red)
    }

.pill {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    background: #eaf5ef;
    color: #126249
}

.bad .pill {
    background: #fff0f1;
    color: #b61524
}

ul {
    padding-right: 22px;
    margin: 14px 0
}

li {
    margin: 9px 0
}

    li::marker {
        color: var(--red)
    }

.callout {
    border-right: 3px solid var(--red);
    background: #fff4f4;
    padding: 15px 20px;
    border-radius: 5px;
    margin-top: 22px;
    font-size: 15px
}

.contact-strip {
    margin-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: #252527;
    color: #fff;
    padding: 25px 30px;
    border-radius: 10px
}

    .contact-strip p {
        margin: 0;
        color: #dedee1;
        font-size: 14px
    }

    .contact-strip .btn {
        white-space: nowrap
    }

.requirements {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.requirement {
    border-top: 1px solid #cfcfd3;
    padding-top: 22px
}

.number {
    color: var(--red);
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 18px
}

.requirement p {
    font-size: 15px;
    color: var(--muted)
}

.requirement h3 {
    font-size: 18px
}

.notice {
    margin-top: 28px;
    padding: 19px 23px;
    background: var(--pale);
    border-radius: 8px;
    font-size: 15px
}

.flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: step
}

.step {
    position: relative;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px
}

    .step:before {
        counter-increment: step;
        content: '۰' counter(step, persian);
        font-size: 14px;
        color: var(--red);
        display: block;
        font-weight: 700;
        margin-bottom: 24px
    }

    .step h3 {
        font-size: 18px
    }

    .step p {
        font-size: 14px;
        margin: 0;
        color: var(--muted)
    }

.guide-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 65px
}

.guide-title {
    position: sticky;
    top: 120px;
    align-self: start
}

.format-demo {
    background: #202022;
    color: #fff;
    border-radius: 10px;
    padding: 22px;
    margin-top: 24px
}

.files {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    direction: ltr
}

.file {
    border: 1px solid #68686d;
    border-radius: 7px;
    padding: 15px 19px;
    font-size: 14px;
    text-align: center
}

    .file b {
        display: block;
        font: 700 25px Arial, sans-serif;
        margin-bottom: 6px
    }

.format-demo p {
    margin: 15px 0 0;
    font-size: 13px;
    color: #e0e0e4;
    text-align: center
}

details {
    border-bottom: 1px solid var(--line);
    padding: 0
}

summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-weight: 700;
    font-size: 18px
}

    summary::-webkit-details-marker {
        display: none
    }

    summary:after {
        content: '+';
        font-size: 25px;
        font-weight: 400;
        color: var(--red)
    }

details[open] summary:after {
    content: '−'
}

.detail-body {
    padding: 0 0 22px;
    color: #515157;
    font-size: 15px
}

    .detail-body p:last-child {
        margin-bottom: 0
    }

.fact-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px dashed var(--line);
    padding: 11px 0
}

    .fact-row strong {
        color: var(--ink)
    }

.tag-example {
    direction: ltr;
    display: block;
    background: var(--pale);
    padding: 10px 15px;
    border-radius: 6px;
    text-align: right;
    margin: 14px 0
}

.earnings {
    background: #202022;
    color: #fff
}

    .earnings .eyebrow {
        color: #ff8c98
    }

.earn-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center
}

.earnings p {
    color: #ccccd0
}

.payout {
    border: 1px solid #515155;
    border-radius: 12px;
    padding: 30px
}

.pay-row {
    display: flex;
    gap: 22px;
    padding: 17px 0
}

    .pay-row + .pay-row {
        border-top: 1px solid #454549
    }

    .pay-row b {
        font-size: 28px;
        color: #ff8c98
    }

    .pay-row p {
        font-size: 14px;
        margin: 0
    }

    .pay-row h3 {
        font-size: 17px;
        margin: 0
    }

.faq {
    max-width: 880px;
    margin: auto
}

.signup-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start
}

.checklist {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 30px
}

    .checklist legend {
        padding: 0 0 16px;
        font-size: 21px;
        font-weight: 700
    }

    .checklist fieldset {
        border: 0;
        margin: 0;
        padding: 0;
        min-width: 0
    }

.check {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    font-size: 15px
}

    .check input {
        width: 20px;
        height: 20px;
        flex: 0 0 20px;
        accent-color: var(--red);
        margin: 5px 0 0
    }

.checklist .btn {
    width: 100%;
    margin-top: 20px
}

.checklist button:disabled {
    background: #e7e7e9;
    color: #727278;
    cursor: not-allowed
}

.status {
    font-size: 13px;
    color: var(--muted);
    margin: 14px 0 0;
    min-height: 26px
}

.small {
    font-size: 14px
}

.support-link {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 5px
}

.support-photo {
    margin: 25px 0 0
}

    .support-photo img {
        display: block;
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 10px
    }

    .support-photo figcaption {
        font-size: 12px;
        color: var(--muted);
        margin-top: 7px
    }

.help-box {
    padding: 24px 0;
    border-top: 1px solid var(--line);
    margin-top: 28px
}

.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 16px
}

footer {
    padding: 30px 0;
    border-top: 1px solid var(--line)
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center
}

    .foot p {
        font-size: 13px;
        margin: 0;
        color: var(--muted)
    }

    .foot a {
        font-size: 14px
    }

.skip {
    position: fixed;
    top: -100px;
    right: 16px;
    background: #fff;
    padding: 10px;
    z-index: 99
}

    .skip:focus {
        top: 5px
    }

@media(max-width:1000px) {
    nav {
        gap: 14px
    }

    .hero-grid {
        gap: 30px
    }

    .art img {
        height: 460px
    }

    .requirements {
        grid-template-columns: 1fr 1fr
    }

    .guide-grid,
    .signup-grid {
        gap: 35px
    }

    .flow {
        grid-template-columns: 1fr 1fr
    }

    .earn-grid {
        gap: 35px
    }
}

@media(max-width:720px) {
    .wrap {
        width: calc(100% - 36px)
    }

    .nav {
        min-height: 75px;
        gap: 12px
    }

    .brand {
        font-size: 22px
    }

    .nav > .btn {
        padding: 8px 13px;
        font-size: 13px;
        min-height: 43px
    }

    nav {
        display: none
    }

    .hero {
        padding: 35px 0
    }

    .hero-grid,
    .columns,
    .guide-grid,
    .earn-grid,
    .signup-grid {
        grid-template-columns: 1fr
    }

    .hero-grid {
        gap: 30px
    }

    h1 {
        font-size: 38px
    }

    .lead {
        font-size: 16px
    }

    .art img {
        height: 350px
    }

    .art-label {
        right: 13px;
        bottom: 53px;
        font-size: 16px;
        padding: 12px 18px
    }

    .disciplines {
        gap: 10px 20px;
        margin-top: 24px;
        font-size: 13px
    }

        .disciplines span:first-child {
            width: 100%
        }

    section {
        padding: 48px 0
    }

    .route {
        padding: 23px
    }

    .contact-strip {
        align-items: stretch;
        flex-direction: column;
        padding: 23px
    }

    .requirements {
        gap: 20px
    }

    .requirement p {
        font-size: 14px
    }

    .number {
        margin-bottom: 10px
    }

    .flow {
        gap: 12px
    }

    .step {
        padding: 18px
    }

        .step:before {
            margin-bottom: 14px
        }

        .step h3 {
            font-size: 16px
        }

        .step p {
            font-size: 14px
        }

    .guide-title {
        position: static
    }

    .guide-grid {
        gap: 20px
    }

    .earn-grid {
        gap: 20px
    }

    .checklist {
        padding: 22px
    }

    .foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px
    }

    .section-head {
        margin-bottom: 25px
    }

    .actions .btn {
        flex: 1;
        font-size: 14px;
        padding: 10px 15px
    }

    .signup-grid {
        gap: 20px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    * {
        transition: none !important
    }
}

@media print {

    header,
    .actions,
    .checklist,
    footer {
        display: none
    }

    section {
        padding: 25px 0
    }

    details .detail-body {
        display: block
    }

    .art img {
        height: 250px
    }

    .guide-title {
        position: static
    }
}

/* Artist carousel and navigation */
.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
}

[hidden] {
    display: none !important
}

.new-nav {
    min-height: 94px;
    gap: 22px
}

    .new-nav .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 24px
    }

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 48px;
    background: var(--red);
    color: #fff;
    border-radius: 14px 14px 14px 3px;
    font-size: 33px;
    line-height: 1
}

.new-nav .brand small {
    font-size: 11px;
    margin-top: 9px
}

.desktop-nav {
    display: flex;
    gap: 5px;
    padding: 5px;
    background: #f5f5f6;
    border: 1px solid #ededee;
    border-radius: 12px
}

    .desktop-nav a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 9px 12px;
        border-radius: 8px;
        font-size: 13px;
        white-space: nowrap
    }

        .desktop-nav a:hover {
            background: #fff;
            box-shadow: 0 2px 8px #00000008
        }

    .desktop-nav svg {
        width: 19px;
        height: 19px;
        color: var(--red)
    }

.nav-actions {
    display: flex;
    gap: 19px;
    align-items: center
}

.login-link {
    font-size: 13px;
    white-space: nowrap
}

    .login-link:hover {
        color: var(--red)
    }

.nav-signup {
    font-size: 13px;
    min-height: 44px;
    padding: 9px 16px
}

    .nav-signup svg {
        width: 17px;
        height: 17px
    }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 9px;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

    .menu-toggle svg {
        width: 24px;
        height: 24px
    }

.mobile-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 14px 20px 20px;
    border-top: 1px solid var(--line)
}

    .mobile-nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: 8px
    }

        .mobile-nav a:hover {
            background: var(--pale)
        }

    .mobile-nav svg {
        width: 21px;
        height: 21px;
        color: var(--red)
    }

.hero-showcase {
    padding: 38px 0 25px
}

.hero-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px
}

    .hero-intro .eyebrow {
        font-size: 13px;
        margin-bottom: 9px
    }

    .hero-intro h1 {
        font-size: clamp(28px, 3.3vw, 40px);
        line-height: 1.6;
        letter-spacing: -1px;
        margin-bottom: 8px
    }

    .hero-intro p {
        font-size: 14px;
        color: var(--muted);
        margin: 0
    }

.share-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 22px;
    border-right: 1px solid var(--line);
    white-space: nowrap
}

    .share-badge > strong {
        font-size: 52px;
        line-height: 1.3;
        letter-spacing: -3px;
        color: var(--red)
    }

        .share-badge > strong span {
            font-size: 26px
        }

    .share-badge > span {
        font-size: 14px;
        line-height: 1.9
    }

    .share-badge b {
        font-size: 12px;
        font-weight: 400;
        color: var(--muted)
    }

.carousel-shell {
    width: min(1320px, calc(100% - 44px));
    margin: auto
}

.artist-carousel {
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: #161719
}

.carousel-stage {
    position: relative;
    height: 570px;
    isolation: isolate
}

.artist-slide {
    position: absolute;
    inset: 0;
    color: #fff;
    overflow: hidden
}

    .artist-slide > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block
    }

.slide-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgba(9, 14, 20, .88) 0%, rgba(9, 14, 20, .70) 23%, rgba(9, 14, 20, .14) 61%, rgba(9, 14, 20, .05)), linear-gradient(0deg, rgba(9, 14, 20, .48), transparent 28%);
    pointer-events: none
}

.slide-copy {
    position: absolute;
    inset-inline-start: 5.4%;
    top: 50%;
    transform: translateY(-50%);
    width: 39%;
    max-width: 475px
}

.slide-category {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 15px;
    padding: 5px 11px;
    border: 1px solid #ffffff50;
    background: #ffffff12;
    border-radius: 6px;
    margin-bottom: 23px;
    backdrop-filter: blur(6px)
}

    .slide-category svg {
        width: 20px;
        height: 20px
    }

.slide-copy h2 {
    font-size: clamp(30px, 3.2vw, 43px);
    line-height: 1.65;
    letter-spacing: -1px;
    margin-bottom: 17px
}

.slide-copy p {
    color: #ededf0;
    font-size: 16px;
    line-height: 2.1;
    max-width: 390px;
    margin-bottom: 27px
}

.slide-cta {
    font-size: 14px;
    gap: 18px;
    border-color: #ee3042
}

    .slide-cta svg {
        width: 18px;
        height: 18px
    }

.slide-number {
    position: absolute;
    left: 34px;
    top: 25px;
    font-size: 24px;
    font-weight: 700;
    direction: ltr;
    text-shadow: 0 2px 8px #000
}

    .slide-number span {
        font-size: 14px;
        font-weight: 400;
        color: #fff
    }

.carousel-controls {
    position: absolute;
    bottom: 24px;
    left: 28px;
    display: flex;
    direction: rtl;
    align-items: center;
    gap: 8px;
    z-index: 2
}

    .carousel-controls button {
        background: #15171bcc;
        border: 1px solid #ffffff60;
        color: #fff;
        height: 43px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(8px)
    }

        .carousel-controls button:hover {
            background: #303239
        }

    .carousel-controls svg {
        width: 19px;
        height: 19px
    }

.carousel-arrow {
    width: 43px
}

    .carousel-arrow[data-dir="-1"] svg {
        transform: rotate(180deg)
    }

.carousel-play {
    gap: 8px;
    padding: 0 14px;
    font-size: 12px;
    min-width: 88px
}

.carousel-tabs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    background: #fff;
    gap: 0
}

.carousel-tab {
    position: relative;
    border: 0;
    border-left: 1px solid var(--line);
    background: #fff;
    color: #515157;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 20px 16px;
    text-align: right;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.65
}

    .carousel-tab:last-child {
        border-left: 0
    }

    .carousel-tab .tab-icon {
        width: 31px;
        height: 34px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center
    }

    .carousel-tab svg {
        width: 25px;
        height: 25px
    }

    .carousel-tab small {
        font-size: 11px;
        color: #89898f;
        margin-inline-start: auto
    }

    .carousel-tab[aria-pressed="true"] {
        color: var(--red);
        background: #fff5f6;
        font-weight: 700
    }

        .carousel-tab[aria-pressed="true"]:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--red)
        }

    .carousel-tab:hover {
        background: #f6f6f7
    }

.carousel-foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 12px 3px
}

    .carousel-foot p {
        font-size: 11px;
        color: var(--muted);
        margin: 0
    }

    .carousel-foot a {
        font-size: 12px;
        font-weight: 700;
        color: var(--red);
        white-space: nowrap
    }

.originality-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--line)
}

    .originality-note svg {
        width: 24px;
        height: 24px;
        color: var(--green);
        flex-shrink: 0
    }

    .originality-note p {
        font-size: 14px;
        margin: 0;
        color: var(--muted)
    }

    .originality-note strong {
        color: var(--ink)
    }

.income-share {
    display: flex;
    align-items: center;
    gap: 22px;
    border-top: 1px solid #ffffff30;
    border-bottom: 1px solid #ffffff30;
    padding: 20px 0;
    margin: 22px 0
}

    .income-share > strong {
        font-size: 74px;
        line-height: 1.2;
        color: #ff8c98;
        letter-spacing: -4px
    }

        .income-share > strong span {
            font-size: 36px
        }

    .income-share > div {
        font-size: 16px
    }

    .income-share small {
        display: block;
        font-size: 12px;
        color: #bbbbc2;
        margin-top: 5px
    }

@media(min-width:1101px) {
    .mobile-nav {
        display: none !important
    }
}

@media(max-width:1100px) {
    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    .nav-actions {
        gap: 15px
    }

    .new-nav {
        min-height: 84px
    }

    .carousel-stage {
        height: 510px
    }

    .carousel-tab {
        padding: 16px 10px;
        gap: 5px;
        font-size: 12px
    }

        .carousel-tab small {
            display: none
        }

    .slide-copy {
        width: 43%
    }

    .share-badge {
        padding: 8px 16px
    }

    .hero-intro h1 {
        font-size: 32px
    }
}

@media(max-width:760px) {
    .hero-showcase {
        padding: 26px 0 20px
    }

    .hero-intro {
        display: block;
        margin-bottom: 22px
    }

        .hero-intro h1 {
            font-size: 30px
        }

            .hero-intro h1 em {
                display: block
            }

        .hero-intro p {
            font-size: 14px;
            max-width: 540px
        }

    .share-badge {
        display: inline-flex;
        border: 0;
        border-radius: 8px;
        background: #fff2f3;
        padding: 8px 16px;
        gap: 14px;
        margin-top: 17px
    }

        .share-badge > strong {
            font-size: 37px;
            letter-spacing: -2px
        }

            .share-badge > strong span {
                font-size: 20px
            }

        .share-badge > span {
            font-size: 12px;
            line-height: 1.6
        }

        .share-badge b {
            font-size: 11px
        }

    .carousel-shell {
        width: calc(100% - 28px)
    }

    .carousel-stage {
        height: 530px
    }

    .artist-slide > img {
        height: 320px;
        object-fit: cover;
        object-position: 45% center
    }

    .artist-slide {
        background: #171b21
    }

    .slide-shade {
        background: linear-gradient(0deg, #171b21 36%, #171b2100 76%)
    }

    .slide-copy {
        width: auto;
        max-width: none;
        right: 23px;
        left: 23px;
        top: auto;
        bottom: 77px;
        transform: none
    }

    .slide-category {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 3px 9px
    }

        .slide-category svg {
            width: 16px;
            height: 16px
        }

    .slide-copy h2 {
        font-size: 27px;
        margin-bottom: 8px;
        line-height: 1.6
    }

    .slide-copy p {
        font-size: 14px;
        line-height: 1.85;
        margin-bottom: 17px;
        max-width: 100%
    }

    .slide-cta {
        min-height: 43px;
        font-size: 13px;
        padding: 8px 15px
    }

    .slide-number {
        top: 18px;
        left: 20px;
        font-size: 20px
    }

    .carousel-controls {
        left: 20px;
        bottom: 19px
    }

        .carousel-controls button {
            height: 39px
        }

    .carousel-arrow {
        width: 39px
    }

    .carousel-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }

    .carousel-tab {
        font-size: 12px;
        padding: 13px 9px;
        gap: 6px;
        min-height: 62px
    }

        .carousel-tab:nth-child(-n+3) {
            border-bottom: 1px solid var(--line)
        }

        .carousel-tab:nth-child(3) {
            border-left: 0
        }

        .carousel-tab .tab-icon {
            width: 25px;
            height: 29px
        }

        .carousel-tab svg {
            width: 22px;
            height: 22px
        }

    .carousel-foot {
        align-items: flex-start;
        gap: 7px;
        flex-direction: column;
        padding: 10px 2px
    }

        .carousel-foot p {
            font-size: 10px;
            line-height: 1.8
        }

    .originality-note {
        margin-top: 9px;
        align-items: flex-start;
        gap: 8px
    }

        .originality-note p {
            font-size: 13px;
            line-height: 1.95
        }

        .originality-note svg {
            margin-top: 3px;
            width: 20px
        }

    .new-nav {
        min-height: 76px;
        gap: 12px
    }

        .new-nav .brand {
            font-size: 20px;
            gap: 7px
        }

            .new-nav .brand small {
                font-size: 10px;
                margin-top: 7px
            }

    .brand-mark {
        width: 33px;
        height: 39px;
        border-radius: 10px 10px 10px 3px;
        font-size: 28px
    }

    .nav-actions {
        gap: 8px
    }

    .login-link {
        display: none
    }

    .nav-signup {
        padding: 8px 11px;
        min-height: 40px;
        font-size: 12px
    }

        .nav-signup svg {
            display: none
        }

    .menu-toggle {
        width: 40px;
        height: 40px
    }

    .income-share {
        gap: 16px
    }

        .income-share > strong {
            font-size: 64px
        }

        .income-share > div {
            font-size: 14px
        }
}

@media(max-width:360px) {
    .new-nav .brand small {
        display: none
    }

    .brand-mark {
        display: none
    }

    .slide-copy h2 {
        font-size: 24px
    }

    .carousel-tab {
        font-size: 11px;
        gap: 4px
    }

    .carousel-stage {
        height: 550px
    }

    .hero-intro h1 {
        font-size: 27px
    }

    .nav-signup {
        padding: 8px
    }

    .income-share {
        flex-wrap: wrap
    }
}

@media(prefers-reduced-motion:no-preference) {
    .artist-slide:not([hidden]) {
        animation: slide-appear .45s ease-out
    }

    @keyframes slide-appear {
        from {
            opacity: .35
        }

        to {
            opacity: 1
        }
    }
}

@media print {
    .carousel-stage {
        height: 350px
    }

    .carousel-controls,
    .carousel-tabs {
        display: none
    }

    .artist-slide[hidden] {
        display: none
    }

    .slide-copy {
        top: 35%;
        bottom: auto
    }

        .slide-copy p {
            display: none
        }

    .hero-intro h1 {
        font-size: 30px
    }
}


