@font-face {
    font-family: 'RoadRage';
    src: url('../fonts/Road_Rage.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 0;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 8px;
    color: #fff;
    white-space: nowrap;
}

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

.logo::after {
    content: ".";
    color: #ff7a1a;
}

nav {
    display: flex;
    gap: 24px;
}

nav a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 800;
    font-size: .9rem;
    transition: .2s;
    white-space: nowrap;
}

nav a:hover,
nav a.active {
    color: #ff7a1a;
}

.header-btn {
    background: #ff7a1a;
    color: #000;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .2s;
    white-space: nowrap;
}

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

.language-switcher {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.language-switcher button {
    background: rgba(0,0,0,.35);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    padding: 8px 9px;
    border-radius: 8px;
    font-weight: 800;
    font-size: .72rem;
    cursor: pointer;
    transition: .2s;
}

.language-switcher button.active,
.language-switcher button:hover {
    background: #ff7a1a;
    color: #000;
    border-color: #ff7a1a;
}

/* =========================
   Main Hero
========================= */

.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72) 0%,
            rgba(0,0,0,.42) 45%,
            rgba(0,0,0,.08) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.25) 0%,
            rgba(0,0,0,.15) 55%,
            rgba(0,0,0,.55) 100%
        ),
        url("../img/hero.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-content {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

.hero h1 {
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: .88;
    text-transform: uppercase;
    font-weight: 900;
    max-width: 900px;
    text-shadow: 0 10px 30px rgba(0,0,0,.45);
}

.hero h1 .brush {
    display: block;
    font-family: 'RoadRage', Arial, sans-serif !important;
    font-size: .88em;
    line-height: .9;
    margin-top: 10px;
    margin-bottom: 35px;
    padding-left: 70px;
    padding-right: 30px;
    letter-spacing: 2px;
    transform: translateX(-25px) rotate(-3deg);
    transform-origin: left center;
    white-space: nowrap;
    background: linear-gradient(
        180deg,
        #ffb15e 0%,
        #ff7a1a 45%,
        #e85d00 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    line-height: 1.6;
    font-weight: 500;
    color: #ffffff;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 34px;
    background: #ff7a1a;
    color: #000;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    transition: .2s;
}

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

.btn-secondary {
    background: rgba(0,0,0,.15);
    color: white;
    border: 1px solid rgba(255,255,255,.55);
}

.btn-shop {
    background: #111;
    color: #fff;
    border: 2px solid #ff7a1a;
}

.btn-shop:hover {
    background: #ff7a1a;
    color: #000;
}

.hero-stats {
    margin-top: 55px;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
}

.stat-card {
    padding: 30px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.stat-card:last-child {
    border-right: none;
}

.stat-card strong {
    display: block;
    font-size: 2rem;
    color: #ff7a1a;
    margin-bottom: 8px;
}

.stat-card span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .5px;
}

/* =========================
   Sections
========================= */

.section {
    padding: 100px 0;
}

.dark {
    background: #080808;
}

.section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    max-width: 920px;
}

.section p {
    max-width: 850px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.section-kicker {
    color: #ff7a1a !important;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

.section a:not(.btn) {
    color: #ff7a1a;
    font-weight: 800;
    text-decoration: none;
}

.partner-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.package-grid article {
    min-height: 240px;
    padding: 30px;
    border: 1px solid rgba(255,122,26,.22);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,122,26,.12), rgba(255,255,255,.025)),
        #121212;
}

.package-grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: #ff7a1a;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.package-grid strong {
    display: block;
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.15;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.package-grid p {
    color: #d2d2d2;
    margin-bottom: 0;
}

.card {
    padding: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.08);
    transition: .2s;
    min-height: 190px;
}

.card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,122,26,.48);
}

.card strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card span {
    display: block;
    color: #c8c8c8;
    line-height: 1.65;
}

.editorial {
    background:
        linear-gradient(180deg, rgba(255,122,26,.045), rgba(16,16,16,0)),
        #111;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 46px;
    align-items: center;
}

.feature-list {
    display: grid;
    gap: 14px;
}

.feature-list article,
.app-callout {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
}

.feature-list article {
    padding: 24px;
}

.feature-list span {
    display: inline-flex;
    color: #7ed5ff;
    font-weight: 900;
    margin-bottom: 10px;
}

.feature-list strong,
.app-callout strong {
    display: block;
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.feature-list p,
.app-callout p {
    color: #cfcfcf;
    margin-bottom: 0;
}

.apps-teaser {
    background:
        linear-gradient(135deg, rgba(126,213,255,.08), transparent 38%),
        #0b0b0b;
}

.app-callout {
    padding: 32px;
    border-color: rgba(126,213,255,.22);
}

.app-callout p {
    margin-bottom: 26px;
}

.nearme-screens {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 0;
}

.nearme-screens figure {
    margin: 0;
}

.nearme-screens img {
    width: 100%;
    max-height: 360px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: #111;
    box-shadow: 0 22px 70px rgba(0,0,0,.45);
    object-fit: cover;
    object-position: top center;
}

.nearme-screens figcaption {
    margin-top: 8px;
    color: #ff7a1a;
    font-size: .8rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.compact-preview .split-section {
    grid-template-columns: minmax(0, .75fr) minmax(420px, 1.25fr);
    align-items: start;
}

.founder-section {
    background:
        radial-gradient(circle at top right, rgba(255,122,26,.16), transparent 34%),
        #0b0b0b;
    text-align: left;
}

.founder-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(340px, .75fr);
    align-items: center;
    gap: 56px;
}

.founder-copy h2 {
    max-width: 680px;
}

.founder-panel {
    display: grid;
    gap: 16px;
}

.founder-limit-card {
    background: linear-gradient(180deg, rgba(255,122,26,.16), rgba(255,255,255,.035));
    border: 1px solid rgba(255,122,26,.34);
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 26px 80px rgba(0,0,0,.32);
}

.founder-limit-card span {
    display: block;
    color: #ff7a1a;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.founder-limit-card strong {
    display: block;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: .95;
    text-transform: none;
}

.founder-limit-card p {
    color: #d6d6d6;
    line-height: 1.55;
    margin-top: 16px;
}

.founder-note {
    max-width: 700px;
    color: #d0d0d0;
    font-size: 1.12rem;
    line-height: 1.65;
}

.founder-actions {
    margin-top: 32px;
}

.founder-benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.founder-benefit-list article {
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 18px 20px;
}

.founder-benefit-list strong,
.founder-benefit-list span {
    display: block;
}

.founder-benefit-list strong {
    color: #fff;
    margin-bottom: 4px;
}

.founder-benefit-list span {
    color: #bdbdbd;
    line-height: 1.5;
}

.app-card ul {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    padding-left: 18px;
    color: #d8d8d8;
    line-height: 1.55;
}

.app-callout ul,
.contact-list {
    display: grid;
    gap: 10px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.app-callout li,
.contact-list li {
    position: relative;
    color: #d8d8d8;
    line-height: 1.55;
    padding-left: 24px;
}

.app-callout li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    top: .68em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff7a1a;
}

.media-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.media-points span {
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: #f2f2f2;
    font-weight: 800;
    padding: 12px 16px;
}

.contact-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(255,122,26,.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255,122,26,.12), rgba(255,255,255,.03)),
        #111;
    padding: 42px;
}

.contact-panel p:last-child {
    margin-bottom: 0;
}

.legal-shell {
    background:
        linear-gradient(180deg, rgba(255,122,26,.08), rgba(11,11,11,0) 320px),
        #0b0b0b;
    min-height: 100vh;
}

.legal-hero {
    padding: 150px 0 48px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.36)),
        url("../img/hero.webp");
    background-size: cover;
    background-position: center;
}

.legal-hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: .9;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.legal-content {
    max-width: 980px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    background: rgba(255,255,255,.045);
    overflow: hidden;
    overflow-wrap: anywhere;
}

.legal-content h1 {
    display: none;
}

.legal-content h2,
.legal-content h3 {
    color: #fff;
    margin: 34px 0 14px;
}

.legal-content h2:first-child,
.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: #d5d5d5;
    line-height: 1.8;
}

.legal-content ul {
    display: grid;
    gap: 8px;
    margin: 0 0 20px 18px;
}

.legal-content a {
    color: #ff7a1a;
    font-weight: 800;
}

.legal-content * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.legal-content iframe,
.legal-content script,
.legal-content div {
    max-width: 100%;
}

#matomo-opt-out {
    max-width: 100%;
    overflow: auto;
}

html,
body {
    max-width: 100%;
}

footer {
    padding: 40px;
    text-align: center;
    color: #888;
    background: #050505;
}

footer a {
    color: #ff7a1a;
    text-decoration: none;
    font-weight: 800;
}

/* =========================
   ON.ROCKY Apps Hero
========================= */

.apps-hero {
    min-height: 100vh;
    padding-top: 145px;
    padding-bottom: 80px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.60) 0%,
            rgba(0,0,0,0.36) 34%,
            rgba(0,0,0,0.10) 62%,
            rgba(0,0,0,0.00) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.22) 0%,
            rgba(0,0,0,0.00) 50%,
            rgba(0,0,0,0.48) 100%
        ),
        url("/img/apps-hero.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
}

.apps-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.apps-kicker {
    color: #ff7a1a;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.apps-hero h1 {
    font-size: clamp(3.5rem, 7vw, 7rem);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 26px;
    max-width: 760px;
    text-shadow: 0 10px 30px rgba(0,0,0,.70);
}

.apps-hero h1 span {
    color: #ff7a1a;
}

.apps-hero p {
    max-width: 650px;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 34px;
    text-shadow: 0 5px 20px rgba(0,0,0,.80);
}

.apps-hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* =========================
   Apps Hero Feature Icons
========================= */

.apps-hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 44px;
    max-width: 840px;
}

.apps-feature {
    background: rgba(0,0,0,.42);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 16px;
    padding: 16px 20px;
    min-width: 205px;
    color: #ddd;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ff7a1a;
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.apps-feature strong {
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.apps-feature span {
    display: block;
    color: #d0d0d0;
    font-size: .95rem;
}

.nearme-hero {
    min-height: 92vh;
}

.nearme-hero .container {
    max-width: 1320px;
}

.nearme-hero h1 {
    max-width: 820px;
    font-size: clamp(3.4rem, 6.2vw, 6.4rem);
}

.nearme-hero p {
    max-width: 610px;
    font-size: clamp(1.08rem, 1.45vw, 1.35rem);
}

.nearme-hero .apps-hero-features {
    max-width: 720px;
    gap: 14px;
    margin-top: 34px;
}

.nearme-hero .apps-feature {
    min-width: 180px;
    border-radius: 14px;
    padding: 14px 16px;
}

/* =========================
   Apps Cards
========================= */

.apps-section {
    background:
        radial-gradient(circle at top right, rgba(255,122,26,.10), transparent 35%),
        #0b0b0b;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.apps-grid a {
    text-decoration: none;
    color: inherit;
}

.app-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    padding: 30px;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
    min-height: 280px;
    cursor: pointer;
    display: block;
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,106,0,0.65);
    background: linear-gradient(180deg, rgba(255,122,26,0.08), rgba(255,255,255,0.025));
}

.app-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255,122,26,.12);
    border: 1px solid rgba(255,122,26,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.app-card h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.app-card p {
    color: #bbb;
    line-height: 1.65;
}

.app-status {
    display: inline-block;
    margin-top: 18px;
    color: #ff7a1a;
    font-weight: 800;
}

.status-live {
    color: #6ee26e;
}

/* =========================
   Responsive
========================= */

@media(max-width:1000px) {
    nav {
        display: none;
    }

    header {
        padding: 24px 0;
    }

    header .container {
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        position: relative;
    }

    .logo {
        font-size: 1.15rem;
        letter-spacing: 7px;
        margin-top: 6px;
    }

    .header-btn {
        display: inline-flex;
        padding: 12px 18px;
        font-size: .85rem;
    }

    .language-switcher {
        position: absolute;
        top: 58px;
        left: 0;
        justify-content: flex-start;
        max-width: 270px;
    }

    .language-switcher button {
        padding: 6px 8px;
        font-size: .68rem;
    }

    .hero {
        min-height: 100vh;
        background-position: 67% center;
        padding-top: 150px;
        padding-bottom: 50px;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 13vw, 4.3rem);
        line-height: .9;
        max-width: 100%;
    }

    .hero h1 .brush {
        font-size: .78em;
        line-height: .9;
        margin-top: 10px;
        margin-bottom: 34px;
        padding-left: 16px;
        padding-right: 0;
        transform: translateX(0) rotate(-3deg);
        max-width: 100%;
        white-space: nowrap;
    }

    .hero p {
        font-size: 1.15rem;
        line-height: 1.55;
        max-width: 95%;
    }

    .buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        margin-top: 36px;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        padding: 20px 24px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .btn-shop {
        display: flex;
        border: 2px solid #ff7a1a;
        background: rgba(0,0,0,.55);
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .stat-card:last-child {
        border-bottom: none;
    }

    .partner-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .compact-preview .split-section {
        grid-template-columns: 1fr;
    }

    .nearme-screens {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nearme-screens img {
        max-height: 280px;
    }

    .feature-list article,
    .app-callout,
    .contact-panel {
        padding: 24px;
    }

    .contact-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .section {
        padding: 75px 0;
    }

    .section h2 {
        font-size: 2.3rem;
    }

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

    .apps-hero {
        background-position: 65% center;
        padding-top: 150px;
        align-items: flex-start;
    }

    .apps-hero h1 {
        font-size: clamp(3rem, 11vw, 4.8rem);
        max-width: 100%;
    }

    .apps-hero p {
        max-width: 95%;
        font-size: 1.1rem;
    }

    .nearme-hero h1 {
        max-width: 760px;
        font-size: clamp(3rem, 10vw, 4.8rem);
    }

    .founder-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 650px) {
    .apps-hero {
        min-height: 88vh;
        background:
            linear-gradient(
                rgba(0,0,0,0.72),
                rgba(0,0,0,0.72)
            ),
            url("/img/apps-hero.webp");
        background-size: cover;
        background-position: 57% center;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .apps-hero-actions {
        flex-direction: column;
    }

    .apps-hero-actions .btn,
    .apps-hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .apps-hero-features {
        gap: 14px;
        margin-top: 34px;
    }

    .apps-feature {
        width: 100%;
        min-width: 0;
    }

    .nearme-hero {
        min-height: 86vh;
    }

    .nearme-hero h1 {
        font-size: clamp(2.55rem, 12vw, 3.8rem);
    }

    .nearme-hero .apps-hero-features {
        margin-top: 28px;
    }

    .founder-limit-card,
    .founder-benefit-list article {
        border-radius: 14px;
    }

    .founder-limit-card {
        padding: 26px;
    }

    .app-card {
        min-height: auto;
    }

    .media-points span {
        width: 100%;
    }
}
.creatorscope-hero {
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.62) 0%,
            rgba(0,0,0,0.36) 34%,
            rgba(0,0,0,0.10) 62%,
            rgba(0,0,0,0.00) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.22) 0%,
            rgba(0,0,0,0.00) 50%,
            rgba(0,0,0,0.48) 100%
        ),
        url("/img/creatorscope-hero.webp");
}
