/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #c0a8e0;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    background-color: #c0a8e0;
}

/* Aurora / liquid gradient background */
.aurora-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 30%, #e48bd8 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #8cd4e8 0%, transparent 50%),
        radial-gradient(circle at 50% 70%, #c78de6 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, #82b8f0 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, #90e0db 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #d8a0e0 0%, transparent 50%);
    background-color: #c0a8e0;
    animation: auroraMove 10s ease-in-out infinite alternate;
}

@keyframes auroraMove {
    0% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    20% {
        transform: translate(12%, -8%) rotate(4deg) scale(1.02);
    }
    40% {
        transform: translate(-8%, 12%) rotate(-3deg) scale(0.98);
    }
    60% {
        transform: translate(10%, 10%) rotate(5deg) scale(1.03);
    }
    80% {
        transform: translate(-12%, -5%) rotate(-4deg) scale(0.97);
    }
    100% {
        transform: translate(6%, -10%) rotate(3deg) scale(1.01);
    }
}

/* Subpages get a much calmer aurora so text stays readable */
body.subpage .aurora-bg {
    animation: auroraMoveSubpage 30s ease-in-out infinite alternate;
}


@keyframes auroraMoveSubpage {
    0% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(3%, -2%) rotate(1deg) scale(1.005);
    }
    100% {
        transform: translate(-2%, 3%) rotate(-1deg) scale(0.995);
    }
}

/* Make all page content sit above the background */
.hero, .showcases, .contact, .networks {
    position: relative;
    z-index: 1;
}

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

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



/* ===== TYPOGRAPHY ===== */
.hero-title,
.section-title {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

.logo {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 40px;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 8.5rem);
    line-height: 1.1;
    margin-bottom: 28px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 60px;
}

.about-title {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

.about-content {
    position: relative;
    padding: 40px 40px 0;
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 80px;
    align-items: start;
}

.about-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-col-left {
    gap: 180px;
}

.about-col-right {
    padding-top: 100px;
}

.about-text {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin: 0;
    opacity: 0.95;
}

.about-photo {
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.about-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.7);
    transform-origin: top;
    animation: aboutLineDraw 2.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.about-line::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes aboutLineDraw {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes aboutFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-title {
    animation: aboutFadeInUp 0.8s ease-out 0.1s both;
}

.about-text-company {
    animation: aboutFadeInUp 0.8s ease-out 0.4s both;
}

.about-text-mission {
    animation: aboutFadeInUp 0.8s ease-out 0.6s both;
}

.about-text-founders {
    animation: aboutFadeInUp 0.8s ease-out 0.8s both;
}

.about-photo {
    animation: aboutFadeInUp 0.9s ease-out 1s both;
}

/* ===== SHARED SUBPAGE STYLES ===== */
.subpage-hero {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 40px;
}

.subpage-title {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    color: #ffffff;
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    animation: aboutFadeInUp 0.8s ease-out 0.1s both;
}

.subpage-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
    opacity: 0.9;
    animation: aboutFadeInUp 0.8s ease-out 0.3s both;
}

.subpage-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 40px 32px 80px;
    color: #ffffff;
}

.subpage-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.75;
    margin: 0 0 22px;
    opacity: 1;
}

.subpage-content .lede {
    font-size: 1.18rem;
    opacity: 1;
}

.subpage-content h2 {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: #ffffff;
    margin: 50px 0 18px;
    letter-spacing: -0.01em;
}

.subpage-content a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.subpage-content a:hover {
    opacity: 0.75;
}

.subpage-content strong {
    font-weight: 600;
    color: #ffffff;
}

/* Playable iframes (100 Ads page) */
.subpage-content .playable {
    text-align: center;
    margin: 36px 0;
}

.subpage-content .playable iframe {
    border: 0;
    border-radius: 16px;
    width: 100%;
    max-width: 640px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #000;
    display: block;
    margin: 0 auto;
}

.subpage-content .playable .cap {
    display: block;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
}

/* Photo / video rows for For Brands */
.subpage-content .screenshot-row,
.subpage-content .media-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.subpage-content .screenshot-row img,
.subpage-content .screenshot-row video {
    height: clamp(320px, 48vw, 450px);
    width: auto;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #000;
    display: block;
}

.subpage-content .media-row video,
.subpage-content .media-row .media-photo {
    height: clamp(360px, 56vw, 517px);
    width: auto;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #000;
    display: block;
}

.subpage-content .photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 36px 0;
    align-items: start;
}

.subpage-content .photo-pair img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@media (max-width: 700px) {
    .subpage-content .photo-pair {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .subpage-content .screenshot-row,
    .subpage-content .media-row {
        flex-direction: column;
    }
    .subpage-content .screenshot-row img,
    .subpage-content .screenshot-row video,
    .subpage-content .media-row video,
    .subpage-content .media-row .media-photo {
        height: auto;
        width: auto;
        max-width: 90%;
    }
}

/* Stats row */
.subpage-content .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 30px 0;
}

.subpage-content .stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 28px 18px;
    border-radius: 14px;
    text-align: center;
}

.subpage-content .stat .num {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 6px;
}

.subpage-content .stat .label {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 700px) {
    .subpage-content .stats-row {
        grid-template-columns: 1fr;
    }
}

/* Awards */
.subpage-content .award-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

.subpage-content .award-list li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 1.02rem;
}

.subpage-content .award-list strong {
    display: block;
    margin-bottom: 4px;
}

.subpage-content .award-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.92rem;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 1px;
}

/* CTA */
.subpage-content .cta {
    margin-top: 50px;
    padding: 30px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    text-align: center;
}

.subpage-content .cta strong {
    display: block;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.subpage-content .cta a {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 999px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.2s ease;
    margin-top: 4px;
}

.subpage-content .cta a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.22);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline {
    padding: 14px 40px;
    border: 1.5px solid transparent;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.02em;
    color: #7A6B9B;
    background: #ffffff;
}

.btn-outline:hover {
    background: #f8f4ff;
}

.btn-submit {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    background: #7c4dff;
    cursor: pointer;
    flex-shrink: 0;
}

.btn-submit:hover {
    background: #651fff;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit .spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
    margin-right: 8px;
}

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

/* ===== STATS SECTION ===== */
.stats {
    position: relative;
    z-index: 1;
    padding: 0px 24px 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    width: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 3.2rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
}

.stat-box p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
}

/* ===== STEPS SECTION ===== */
.steps {
    position: relative;
    z-index: 1;
    padding: 60px 24px 40px;
}

.steps .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.steps-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.steps-list {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 32px;
    align-items: flex-start;
    justify-content: space-between;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.step-number {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 2.4rem;
    color: #ffffff;
    opacity: 0;
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
    transform: scale(0) rotate(-20deg);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-number.visible {
    opacity: 0.9;
    transform: scale(1) rotate(0deg);
}

.step-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.step-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.8;
}

.step-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.step-link:hover {
    opacity: 0.8;
}

.steps-tagline {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    opacity: 0.9;
    text-align: center;
}

.steps-screenshot {
    width: 100%;
    max-width: 1100px;
}

.app-video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    display: block;
}

/* ===== SHOWCASES SECTION ===== */
.showcases {
    padding: 80px 24px 80px;
    text-align: center;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 60px;
    font-style: italic;
}

.showcase-featured {
    display: block;
    max-width: 880px;
    margin: 0 auto 70px;
    padding: 36px 48px;
    background: linear-gradient(110deg, rgba(228, 139, 216, 0.22), rgba(143, 200, 234, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.showcase-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.showcase-featured-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 14px;
}

.showcase-featured-title {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 14px;
}

.showcase-featured-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-featured-cta {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 3px;
}

.showcases-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: nowrap;
    max-width: 1500px;
    margin: 0 auto;
}

.showcase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.3s ease;
    width: 180px;
    position: relative;
}

.showcase-item:hover {
    transform: translateY(-14px);
}

.showcase-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* ===== SHOWCASE IMAGE ===== */
.showcase-img {
    width: 180px;
    height: auto;
    border-radius: 4px;
}

.showcase-label {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    opacity: 1;
    text-align: center;
}

.showcase-company {
    font-size: 0.78rem;
    font-weight: 300;
    text-align: center;
    opacity: 0.7;
    margin-top: -10px;
}

/* ===== SHOWCASE DESCRIPTION ===== */
.showcase-desc {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    z-index: 10;
}

.showcase-desc p {
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.5;
    text-align: center;
    padding-top: 4px;
    opacity: 0.85;
}

.showcase-item:hover .showcase-desc {
    max-height: 200px;
    opacity: 1;
}

/* ===== AD NETWORKS SECTION ===== */
.networks {
    padding: 80px 24px 60px;
    text-align: center;
}

.networks .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.networks-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.network-logo {
    flex: 0 0 160px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 22px 24px;
    aspect-ratio: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.network-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.network-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Logos with extra whitespace baked into the source file — scale them up to match the rest */
.network-logo img[src*="tapjoy"],
.network-logo img[src*="lifestreet"],
.network-logo img[src*="line"] {
    transform: scale(1.5);
}

.network-logo img[src*="ironsource"] {
    transform: scale(1.8);
}

/* Logos that render slightly too large next to the rest — nudge them down */
.network-logo img[src*="liftoff"],
.network-logo img[src*="mintegral"],
.network-logo img[src*="chartboost"],
.network-logo img[src*="digitalturbine"],
.network-logo img[src*="fyber"],
.network-logo img[src*="fiksu"] {
    transform: scale(0.85);
}

@media (max-width: 600px) {
    .networks-grid {
        gap: 14px;
    }
    .network-logo {
        flex: 0 0 calc(50% - 14px);
        padding: 18px 20px;
    }
}

/* ===== CONTACT RECOGNITION ===== */
.contact-recognition {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    max-width: 320px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.contact-recognition:hover {
    opacity: 0.85;
}

.contact-recognition .recognition-badge {
    height: 86px;
    width: auto;
    display: block;
    opacity: 0.95;
    flex-shrink: 0;
}

.contact-recognition .recognition-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
    line-height: 1.4;
    text-align: left;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 80px 24px 100px;
}

.contact .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-width: 300px;
}

.contact-logo .logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.contact-email {
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.9;
}

.contact-email:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.social-link {
    color: #ffffff;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== BLOG CTA ===== */
.blog-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

.blog-cta-text {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.blog-cta-link {
    font-size: 1.05rem;
    font-weight: 500;
    color: #ffffff;
    opacity: 0.9;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.blog-cta-link:hover {
    opacity: 1;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    max-width: 520px;
    min-width: 300px;
}

.contact-form-card {
    background: #ffffff;
    color: #333333;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    flex: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background: #fff;
    transition: border-color 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7c4dff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 20px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-success.visible {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a0dc, #9ec5e0);
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.success-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.success-text {
    font-size: 1.05rem;
    color: #777;
}

.form-error {
    display: none;
    font-size: 0.9rem;
    color: #d32f2f;
}

.form-error.visible {
    display: block;
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    z-index: 1;
    padding: 20px 40px 24px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 80px 0;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    margin: 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    padding-right: 64px; /* leave room for the back-to-top arrow */
}

.footer-legal-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.7;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.footer-legal-link:hover {
    opacity: 1;
}

.footer-company {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 4px;
}

.footer-address {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.8;
}

.footer-recognition {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 380px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

.footer-recognition:hover {
    opacity: 0.85;
}

.recognition-badge {
    height: 92px;
    width: auto;
    display: block;
    opacity: 0.9;
    flex-shrink: 0;
    margin-top: -16px;
}

.recognition-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.75;
    line-height: 1.4;
}

/* ===== RELEASES PAGE ===== */
.releases-page {
    position: relative;
    z-index: 1;
    padding: 20px 24px 60px;
}

.releases-content {
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
}

.release-notes-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.release-entry {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.release-entry h1 {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.2;
}

.release-entry h2 {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 1.35rem;
    color: #ffffff;
    margin-top: 28px;
    margin-bottom: 12px;
}

.release-entry p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 12px;
}

.release-entry em {
    opacity: 0.7;
    font-size: 0.95rem;
}

.release-entry strong {
    font-weight: 600;
}

.release-entry ul {
    padding-left: 24px;
    margin-bottom: 12px;
}

.release-entry li {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 6px;
}

.release-entry a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.release-entry a:hover {
    opacity: 0.8;
}

.release-notes-loading {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.release-notes-loading .spinner {
    display: inline-block;
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.release-notes-error {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.7;
    padding: 60px 0;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 0.8;
    visibility: visible;
}

.back-to-top:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* ===== RESPONSIVE (mobile only — does NOT affect desktop) ===== */
@media (max-width: 768px) {
    .about-content {
        padding: 20px 24px 80px;
    }

    .about-line {
        display: none;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .about-col {
        display: contents;
    }

    .about-col-right {
        padding-top: 0;
    }

    .about-text-company { order: 1; }
    .about-text-mission { order: 2; }
    .about-photo { order: 3; }
    .about-text-founders { order: 4; }

    .releases-page {
        padding: 100px 16px 32px;
    }

    .release-entry {
        padding: 28px 24px;
    }

    .release-entry h1 {
        font-size: 1.5rem;
    }

    .aurora-bg {
        width: 150%;
        height: 150%;
        top: -25%;
        left: -25%;
        background:
            radial-gradient(circle at 20% 30%, #e48bd8 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, #8cd4e8 0%, transparent 50%),
            radial-gradient(circle at 50% 70%, #c78de6 0%, transparent 50%);
        animation: auroraMove 20s ease-in-out infinite alternate;
        will-change: transform;
    }

    .stat-box {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }

    .hero {
        min-height: 85svh;
        padding: 120px 24px 40px;
    }

    .stats {
        padding-top: 0px;
    }

    /* Stats: stack vertically */
    .stats-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat-box {
        width: 90%;
        max-width: 360px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .stat-box p {
        font-size: 0.95rem;
    }

    /* Steps: stack vertically on mobile */
    .steps-content {
        flex-direction: column;
        gap: 40px;
    }

    .steps-list {
        flex-direction: column;
        width: 100%;
        gap: 24px;
    }

    .step-item {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .steps-screenshot {
        max-width: 100%;
    }

    .showcases {
        padding-bottom: 10px;
    }

    .contact {
        padding-top: 40px;
    }

    /* Showcases: wrap into grid */
    .showcases-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .showcase-item {
        width: 140px;
    }

    .showcase-img {
        width: 140px;
    }

    .showcase-desc {
        display: none;
    }

    .showcase-item:hover {
        transform: none;
    }

    /* Contact: stack vertically */
    .contact-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
        padding: 0 24px;
    }

    .contact-info {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .blog-cta-text {
        display: none;
    }

    .blog-cta-link {
        font-size: 0.9rem;
    }

    .contact-form-wrapper {
        width: 100%;
        min-width: unset;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

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

    /* Footer */
    .site-footer {
        padding: 20px 24px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-recognition {
        justify-self: flex-start;
    }

    .footer-legal {
        justify-self: flex-start;
        align-items: flex-start;
        padding-right: 0;
    }

    .footer-copyright {
        padding: 16px 60px 0;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-text h3 {
        font-size: 1rem;
    }

    .showcases-grid {
        gap: 20px;
    }

    .showcase-item {
        width: 120px;
    }

    .showcase-img {
        width: 120px;
    }

    .contact-form-card {
        padding: 24px 20px;
    }
}

/* ====================================================================
   LANDING V2 — light-theme redesign (scoped to body.landing-v2)
   ==================================================================== */

body.landing-v2 {
    background: #f3f4f6;
    color: #0f172a;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
}

body.landing-v2 .aurora-bg {
    display: none;
}

body.landing-v2 .hero,
body.landing-v2 .stats,
body.landing-v2 .steps,
body.landing-v2 .showcases,
body.landing-v2 .contact,
body.landing-v2 .networks {
    background: transparent;
    position: relative;
    overflow: visible;
}

body.landing-v2 .stats-grid,
body.landing-v2 .steps > .section-title,
body.landing-v2 .steps-content,
body.landing-v2 .showcases > .section-title,
body.landing-v2 .showcase-featured,
body.landing-v2 .showcases-grid,
body.landing-v2 .contact > .section-title,
body.landing-v2 .contact-content,
body.landing-v2 .networks > .section-title,
body.landing-v2 .networks-grid,
body.landing-v2 .site-footer {
    position: relative;
    z-index: 2;
}

body.landing-v2 .section-title,
body.landing-v2 .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 500;
    color: #0f172a;
    letter-spacing: -0.01em;
}

body.landing-v2 p,
body.landing-v2 li,
body.landing-v2 a,
body.landing-v2 button,
body.landing-v2 input,
body.landing-v2 textarea,
body.landing-v2 label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== HERO ===== */
body.landing-v2 .hero {
    position: relative;
    min-height: 68vh;
    padding: 120px 40px 40px;
}

body.landing-v2 .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

body.landing-v2 .hero-title {
    font-size: clamp(3.5rem, 8.5vw, 7rem);
    line-height: 1.02;
    margin-bottom: 28px;
    color: #0f172a;
    text-shadow: none;
}

body.landing-v2 .hero-subtitle {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.5;
    max-width: none;
    white-space: nowrap;
    margin: 0 auto 40px;
    color: rgba(15, 23, 42, 0.65);
    opacity: 1;
    text-shadow: none;
    font-weight: 400;
}

body.landing-v2 .btn-outline {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.landing-v2 .btn-outline:hover {
    transform: translateY(-1px);
    background: #1e293b;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.24);
}

/* Decorative colorful blocks */
body.landing-v2 .decor-block {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    user-select: none;
    animation: floatBlock 8s ease-in-out infinite;
}

body.landing-v2 .decor-block-1 {
    top: 6%;
    right: 2%;
    width: 110px;
    transform: rotate(-8deg);
    animation-delay: 0s;
}

body.landing-v2 .decor-block-2 {
    top: 42%;
    right: 2%;
    width: 80px;
    transform: rotate(12deg);
    animation-delay: 1.2s;
}

body.landing-v2 .decor-block-3 {
    top: 10%;
    left: 2%;
    width: 90px;
    transform: rotate(-15deg);
    animation-delay: 2.4s;
}

body.landing-v2 .decor-block-4 {
    bottom: 10%;
    left: 2%;
    width: 85px;
    transform: rotate(20deg);
    animation-delay: 3.6s;
}

body.landing-v2 .decor-block-5 {
    top: 45%;
    left: 2%;
    width: 55px;
    transform: rotate(-20deg);
    animation-delay: 1.8s;
}

body.landing-v2 .decor-block-6 {
    bottom: 10%;
    right: 3%;
    width: 70px;
    transform: rotate(-14deg);
    animation-delay: 3s;
}

@keyframes floatBlock {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -12px; }
}

/* Scattered decor blocks in other sections — hugging edges only */
body.landing-v2 .decor-stats-1 {
    top: -30px;
    right: 18%;
    width: 75px;
    transform: rotate(15deg);
    animation-delay: 0.5s;
}

body.landing-v2 .decor-stats-2 {
    bottom: 10%;
    left: 1%;
    width: 55px;
    transform: rotate(-22deg);
    animation-delay: 2.1s;
}

body.landing-v2 .decor-stats-3 {
    top: -25px;
    left: 10%;
    width: 55px;
    transform: rotate(-10deg);
    animation-delay: 1.4s;
}

body.landing-v2 .decor-steps-1 {
    top: 8%;
    left: 1%;
    width: 85px;
    transform: rotate(-18deg);
    animation-delay: 0.8s;
}

body.landing-v2 .decor-steps-3 {
    bottom: 6%;
    right: 3%;
    width: 55px;
    transform: rotate(-10deg);
    animation-delay: 1.6s;
}

body.landing-v2 .decor-steps-4 {
    top: 3%;
    right: 6%;
    width: 55px;
    transform: rotate(22deg);
    animation-delay: 0.4s;
}

body.landing-v2 .decor-steps-5 {
    bottom: 4%;
    left: 8%;
    width: 60px;
    transform: rotate(15deg);
    animation-delay: 2.7s;
}

body.landing-v2 .decor-showcases-1 {
    top: 4%;
    right: 1%;
    width: 80px;
    transform: rotate(12deg);
    animation-delay: 1s;
}

body.landing-v2 .decor-showcases-2 {
    top: 8%;
    right: 12%;
    width: 65px;
    transform: rotate(-25deg);
    animation-delay: 3.2s;
}

body.landing-v2 .decor-showcases-3 {
    top: 55%;
    right: 3%;
    width: 70px;
    transform: rotate(18deg);
    animation-delay: 2s;
}

body.landing-v2 .decor-showcases-4 {
    bottom: 4%;
    left: 8%;
    width: 55px;
    transform: rotate(-16deg);
    animation-delay: 3.6s;
}

body.landing-v2 .decor-showcases-5 {
    top: 4%;
    left: 8%;
    width: 60px;
    transform: rotate(28deg);
    animation-delay: 0.6s;
}

body.landing-v2 .decor-showcases-6 {
    top: 82%;
    right: 10%;
    width: 45px;
    transform: rotate(-14deg);
    animation-delay: 2.4s;
}

body.landing-v2 .decor-showcases-7 {
    top: 68%;
    right: 6%;
    width: 40px;
    transform: rotate(24deg);
    animation-delay: 1.3s;
}

body.landing-v2 .decor-contact-1 {
    top: 6%;
    left: 1%;
    width: 70px;
    transform: rotate(-14deg);
    animation-delay: 0.3s;
}

body.landing-v2 .decor-contact-2 {
    bottom: 10%;
    right: 1%;
    width: 65px;
    transform: rotate(20deg);
    animation-delay: 2.8s;
}

body.landing-v2 .decor-contact-3 {
    top: 3%;
    right: 6%;
    width: 55px;
    transform: rotate(-24deg);
    animation-delay: 1.1s;
}

body.landing-v2 .decor-contact-4 {
    bottom: 3%;
    left: 8%;
    width: 55px;
    transform: rotate(18deg);
    animation-delay: 3.4s;
}

body.landing-v2 .decor-networks-1 {
    top: 12%;
    right: 1%;
    width: 65px;
    transform: rotate(-18deg);
    animation-delay: 1.4s;
}

body.landing-v2 .decor-networks-2 {
    bottom: 15%;
    left: 1%;
    width: 60px;
    transform: rotate(20deg);
    animation-delay: 0.9s;
}

body.landing-v2 .decor-networks-3 {
    top: 4%;
    right: 8%;
    width: 50px;
    transform: rotate(-12deg);
    animation-delay: 2.3s;
}

body.landing-v2 .decor-networks-4 {
    bottom: 1%;
    left: 8%;
    width: 45px;
    transform: rotate(15deg);
    animation-delay: 0.6s;
}

/* ===== STATS ===== */
body.landing-v2 .stats {
    padding: 60px 40px;
}

body.landing-v2 .stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

body.landing-v2 .stat-box {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    flex: 1 1 260px;
    max-width: 340px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

body.landing-v2 .stat-box {
    cursor: default;
}

body.landing-v2 .stat-box:hover {
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

body.landing-v2 .stats-source {
    max-width: 1100px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(15, 23, 42, 0.55);
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

body.landing-v2 .stats-source a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.landing-v2 .stats-source a:hover {
    color: #2563ff;
}

body.landing-v2 .stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.2;
    padding: 0 4px;
    background: linear-gradient(90deg, #2563ff, #7b3dff, #ff4a6a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 12px;
    text-shadow: none;
}

body.landing-v2 .stat-box p {
    color: rgba(15, 23, 42, 0.68);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ===== STEPS ===== */
body.landing-v2 .steps {
    padding: 100px 40px;
}

body.landing-v2 .steps .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

body.landing-v2 .steps-content {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    grid-template-rows: auto auto;
    gap: 24px 40px;
    align-items: stretch;
}

body.landing-v2 .steps-list {
    grid-column: 1;
    grid-row: 1 / span 2;
}

body.landing-v2 .steps-screenshot {
    grid-column: 2;
    grid-row: 1;
}

body.landing-v2 .steps-list {
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    gap: 14px;
    align-self: stretch;
}

body.landing-v2 .step-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    text-align: left;
    height: auto;
    width: auto;
    box-sizing: border-box;
}

body.landing-v2 .step-number,
body.landing-v2 .step-number.visible {
    display: inline-block;
    width: auto;
    height: auto;
    min-width: 40px;
    min-height: 0;
    border-radius: 0;
    background: linear-gradient(135deg, #2563ff, #7b3dff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 1.3;
    letter-spacing: 0;
    flex-shrink: 0;
    box-shadow: none;
    text-shadow: none;
    opacity: 1;
    transform: none;
    text-align: center;
    padding: 0 2px 4px;
    box-sizing: border-box;
    overflow: visible;
}

body.landing-v2 .step-text {
    text-align: left;
}

body.landing-v2 .step-text h3 {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
    color: #0f172a;
    margin: 0;
    text-align: left;
}

body.landing-v2 .step-link {
    color: #2563ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.landing-v2 .steps-screenshot {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: none;
    background: transparent;
    width: 100%;
    padding: 0;
    align-self: start;
}

body.landing-v2 .app-video {
    width: 100%;
    height: auto;
    display: block;
}

body.landing-v2 .steps-tagline {
    grid-column: 2;
    grid-row: 2;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: 1.9rem;
    color: rgba(15, 23, 42, 0.75);
    margin-top: 0;
    align-self: start;
}

/* ===== SHOWCASES ===== */
body.landing-v2 .showcases {
    padding: 100px 40px;
}

body.landing-v2 .showcases .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

body.landing-v2 .showcase-featured {
    display: block;
    max-width: 1100px;
    margin: 0 auto 60px;
    padding: 40px 48px;
    background: linear-gradient(135deg, #2563ff 0%, #7b3dff 60%, #ff4a6a 100%);
    border-radius: 24px;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(37, 99, 255, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-align: center;
}

body.landing-v2 .showcase-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 70px rgba(37, 99, 255, 0.3);
}

body.landing-v2 .showcase-featured-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

body.landing-v2 .showcase-featured-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin: 0 0 12px;
    color: #ffffff;
    text-shadow: none;
}

body.landing-v2 .showcase-featured-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 780px;
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.92);
}

body.landing-v2 .showcase-featured-cta {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
}

body.landing-v2 .showcases-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

body.landing-v2 .showcases-grid .showcase-item {
    flex: 0 1 240px;
    max-width: 260px;
}

body.landing-v2 .showcase-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.landing-v2 .showcase-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

body.landing-v2 .showcase-visual {
    position: relative;
    padding: 20px 12px 0;
    background: transparent;
}

body.landing-v2 .showcase-img {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: #ffffff;
    display: block;
}

body.landing-v2 .showcase-label {
    padding: 16px 18px 4px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    color: #0f172a;
    margin: 0;
}

body.landing-v2 .showcase-company {
    padding: 0 18px 14px;
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.6);
    margin: 0;
}

body.landing-v2 .showcase-desc {
    padding: 0 18px 22px;
}

body.landing-v2 .showcase-desc p {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(15, 23, 42, 0.72);
    margin: 0;
}

/* ===== CONTACT ===== */
body.landing-v2 .contact {
    padding: 100px 40px;
}

body.landing-v2 .contact .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

body.landing-v2 .contact-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

body.landing-v2 .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    text-align: center;
}

body.landing-v2 .contact-info {
    color: #0f172a;
}

body.landing-v2 .contact-logo .logo {
    filter: brightness(0);
}

body.landing-v2 .contact-email {
    color: #0f172a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

body.landing-v2 .social-link {
    color: rgba(15, 23, 42, 0.7);
}

body.landing-v2 .social-link:hover {
    color: #2563ff;
}

body.landing-v2 .blog-cta-text {
    color: rgba(15, 23, 42, 0.68);
}

body.landing-v2 .blog-cta-link {
    color: #2563ff;
}

body.landing-v2 .contact-recognition {
    color: rgba(15, 23, 42, 0.7);
}

body.landing-v2 .recognition-text {
    color: rgba(15, 23, 42, 0.7);
}

body.landing-v2 .contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.landing-v2 .form-title {
    color: #0f172a;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 500;
}

body.landing-v2 .form-label {
    color: rgba(15, 23, 42, 0.7);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
}

body.landing-v2 .contact-form input,
body.landing-v2 .contact-form textarea {
    background: #f3f4f6;
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: #0f172a;
}

body.landing-v2 .contact-form input::placeholder,
body.landing-v2 .contact-form textarea::placeholder {
    color: rgba(15, 23, 42, 0.4);
}

body.landing-v2 .contact-form input:focus,
body.landing-v2 .contact-form textarea:focus {
    border-color: #2563ff;
    outline: none;
    background: #ffffff;
}

body.landing-v2 .btn-submit {
    background: #0f172a;
    color: #ffffff;
    border: none;
}

body.landing-v2 .btn-submit:hover {
    background: #1e293b;
}

/* ===== NETWORKS ===== */
body.landing-v2 .networks {
    padding: 100px 40px;
}

body.landing-v2 .networks .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 60px;
}

body.landing-v2 .network-logo {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

/* ===== FOOTER ===== */
body.landing-v2 .site-footer {
    background: transparent;
    color: rgba(15, 23, 42, 0.7);
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body.landing-v2 .footer-company,
body.landing-v2 .footer-address,
body.landing-v2 .footer-copyright,
body.landing-v2 .footer-legal-link {
    color: rgba(15, 23, 42, 0.7);
}

body.landing-v2 .footer-legal-link:hover {
    color: #0f172a;
}

body.landing-v2 .back-to-top {
    background: #0f172a;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

body.landing-v2 .back-to-top:hover {
    background: #1e293b;
}

@media (max-width: 900px) {
    body.landing-v2 .steps-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 32px;
        padding: 0 16px;
        box-sizing: border-box;
    }

    body.landing-v2 .steps-list {
        grid-column: 1;
        grid-row: auto;
        display: grid;
        grid-template-rows: repeat(4, 1fr);
        grid-auto-rows: 1fr;
        gap: 12px;
        width: 100%;
    }

    body.landing-v2 .step-item {
        padding: 16px 18px;
        min-height: 150px;
        height: 100%;
    }

    body.landing-v2 .step-number,
    body.landing-v2 .step-number.visible {
        font-size: 2.2rem;
    }

    body.landing-v2 .step-text h3 {
        font-size: 0.95rem;
    }

    body.landing-v2 .steps-screenshot {
        grid-column: 1;
        grid-row: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    body.landing-v2 .steps-tagline {
        grid-column: 1;
        grid-row: auto;
        font-size: 1.4rem;
        text-align: center;
        padding: 0 8px;
    }

    body.landing-v2 .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.landing-v2 .contact-info {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    body.landing-v2 .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        margin: 0 auto;
        box-sizing: border-box;
    }

    body.landing-v2 .contact-form-card {
        width: 100%;
        max-width: 100%;
        padding: 28px 20px;
        box-sizing: border-box;
    }

    body.landing-v2 .contact-form,
    body.landing-v2 .contact-form input,
    body.landing-v2 .contact-form textarea {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    body.landing-v2 .form-label {
        white-space: normal;
        font-size: 0.85rem;
        text-align: left;
    }

    body.landing-v2 .form-row {
        flex-direction: column;
        gap: 12px;
    }

    body.landing-v2 .form-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    body.landing-v2 .btn-submit {
        width: 100%;
    }

    body.landing-v2 .decor-block-1 { width: 90px; }
    body.landing-v2 .decor-block-2 { width: 70px; }
    body.landing-v2 .decor-block-3 { width: 65px; }
    body.landing-v2 .decor-block-4 { width: 80px; }
    body.landing-v2 .decor-block-5 { width: 50px; }
    body.landing-v2 .decor-block-6 { width: 55px; }
}

@media (max-width: 600px) {
    body.landing-v2 .hero {
        padding: 100px 20px 60px;
    }

    body.landing-v2 .hero-subtitle {
        white-space: normal;
        font-size: 0.95rem;
    }

    body.landing-v2 .stats,
    body.landing-v2 .steps,
    body.landing-v2 .showcases,
    body.landing-v2 .contact,
    body.landing-v2 .networks {
        padding: 60px 20px;
    }

    body.landing-v2 .showcase-featured {
        padding: 28px 24px;
    }
}

/* ====================================================================
   LANDING V2 — subpage overrides (about, for-brands, 100-ads, releases)
   ==================================================================== */

body.landing-v2.subpage {
    background: #f3f4f6;
    color: #0f172a;
}

body.landing-v2.subpage::before,
body.landing-v2.subpage::after {
    display: none;
}

/* Subpage hero */
body.landing-v2 .subpage-hero,
body.landing-v2 .about-hero {
    background: transparent;
    position: relative;
    overflow: visible;
    padding: 140px 40px 60px;
    text-align: center;
}

body.landing-v2 .subpage-hero > *:not(.decor-block),
body.landing-v2 .about-hero > *:not(.decor-block) {
    position: relative;
    z-index: 2;
}

body.landing-v2 .subpage-title,
body.landing-v2 .about-title {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 500;
    color: #0f172a;
    text-shadow: none;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin: 0 auto 20px;
    max-width: 900px;
}

body.landing-v2 .subpage-subtitle {
    font-family: 'Inter', sans-serif;
    color: rgba(15, 23, 42, 0.7);
    opacity: 1;
    text-shadow: none;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.55;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* Subpage content (article) */
body.landing-v2 .subpage-content {
    background: transparent;
    position: relative;
    overflow: visible;
    color: #0f172a;
    padding: 40px 40px 80px;
    max-width: 900px;
    margin: 0 auto;
}

body.landing-v2 .subpage-content > *:not(.decor-block) {
    position: relative;
    z-index: 2;
}

body.landing-v2 .subpage-content p,
body.landing-v2 .subpage-content .lede,
body.landing-v2 .subpage-content li {
    font-family: 'Inter', sans-serif;
    color: rgba(15, 23, 42, 0.82);
    opacity: 1;
    text-shadow: none;
    font-size: 1rem;
    line-height: 1.7;
}

body.landing-v2 .subpage-content .lede {
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 400;
}

body.landing-v2 .subpage-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    font-weight: 500;
    color: #0f172a;
    text-shadow: none;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.2;
    margin-top: 48px;
    margin-bottom: 20px;
    text-wrap: balance;
}

body.landing-v2 .subpage-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0f172a;
}

body.landing-v2 .subpage-content a {
    color: #2563ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.landing-v2 .subpage-content a:hover {
    color: #7b3dff;
}

body.landing-v2 .subpage-content strong {
    color: #0f172a;
}

body.landing-v2 .subpage-content .cap,
body.landing-v2 .subpage-content .caption {
    color: rgba(15, 23, 42, 0.6);
}

/* About page specifics */
body.landing-v2 .about-content {
    background: transparent;
    position: relative;
    overflow: visible;
    color: #0f172a;
}

body.landing-v2 .about-content > *:not(.decor-block) {
    position: relative;
    z-index: 2;
}

body.landing-v2 .about-line {
    background: rgba(15, 23, 42, 0.12);
}

body.landing-v2 .about-text {
    font-family: 'Inter', sans-serif;
    color: rgba(15, 23, 42, 0.82);
    opacity: 1;
    text-shadow: none;
}

body.landing-v2 .about-photo img {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

/* Releases page */
body.landing-v2 .releases-page {
    background: transparent;
    position: relative;
    overflow: visible;
    color: #0f172a;
}

body.landing-v2 .releases-page > *:not(.decor-block) {
    position: relative;
    z-index: 2;
}

body.landing-v2 .releases-content {
    color: #0f172a;
}

body.landing-v2 .release-entry {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    color: #0f172a;
}

body.landing-v2 .release-entry h1,
body.landing-v2 .release-entry h2,
body.landing-v2 .release-entry h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    color: #0f172a;
}

body.landing-v2 .release-entry p,
body.landing-v2 .release-entry li {
    color: rgba(15, 23, 42, 0.82);
    opacity: 1;
    font-family: 'Inter', sans-serif;
}

body.landing-v2 .release-entry code {
    background: rgba(15, 23, 42, 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    color: #0f172a;
}

body.landing-v2 .release-entry pre {
    background: rgba(15, 23, 42, 0.06);
    padding: 14px 16px;
    border-radius: 8px;
    overflow-x: auto;
    color: #0f172a;
}

body.landing-v2 .release-entry pre code {
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* Decorative blocks for subpage sections */
body.landing-v2 .subpage-hero .decor-hero-left,
body.landing-v2 .about-hero .decor-hero-left {
    top: 15%;
    left: 3%;
    width: 90px;
    transform: rotate(-15deg);
    animation-delay: 0s;
}

body.landing-v2 .about-hero .decor-hero-left-2 {
    top: 55%;
    left: 6%;
    width: 60px;
    transform: rotate(18deg);
    animation-delay: 2.4s;
}

body.landing-v2 .subpage-hero .decor-hero-right,
body.landing-v2 .about-hero .decor-hero-right {
    top: 20%;
    right: 3%;
    width: 100px;
    transform: rotate(12deg);
    animation-delay: 1.5s;
}

body.landing-v2 .about-hero .decor-hero-right-2 {
    top: 60%;
    right: 7%;
    width: 55px;
    transform: rotate(-20deg);
    animation-delay: 0.9s;
}

body.landing-v2 .subpage-hero .decor-hero-bottom {
    bottom: 5%;
    left: 8%;
    width: 60px;
    transform: rotate(20deg);
    animation-delay: 2.8s;
}

body.landing-v2 .subpage-content .decor-content-1,
body.landing-v2 .about-content .decor-content-1,
body.landing-v2 .releases-page .decor-content-1 {
    top: 3%;
    left: -80px;
    width: 70px;
    transform: rotate(-18deg);
    animation-delay: 0.7s;
}

body.landing-v2 .releases-page .decor-content-1b {
    top: 10%;
    left: -60px;
    width: 45px;
    transform: rotate(20deg);
    animation-delay: 2.5s;
}

body.landing-v2 .subpage-content .decor-content-2,
body.landing-v2 .about-content .decor-content-2,
body.landing-v2 .releases-page .decor-content-2 {
    top: 30%;
    right: -70px;
    width: 65px;
    transform: rotate(22deg);
    animation-delay: 2.1s;
}

body.landing-v2 .subpage-content .decor-content-2b {
    top: 38%;
    right: -50px;
    width: 45px;
    transform: rotate(-16deg);
    animation-delay: 0.4s;
}

body.landing-v2 .releases-page .decor-content-2b {
    top: 38%;
    right: -50px;
    width: 45px;
    transform: rotate(-16deg);
    animation-delay: 0.5s;
}

body.landing-v2 .subpage-content .decor-content-3,
body.landing-v2 .about-content .decor-content-3 {
    top: 60%;
    left: -60px;
    width: 55px;
    transform: rotate(-12deg);
    animation-delay: 1.3s;
}

body.landing-v2 .subpage-content .decor-content-3b {
    top: 68%;
    left: -75px;
    width: 45px;
    transform: rotate(20deg);
    animation-delay: 3s;
}

body.landing-v2 .subpage-content .decor-content-4 {
    bottom: 5%;
    right: -80px;
    width: 60px;
    transform: rotate(15deg);
    animation-delay: 3.4s;
}

/* Download page decor blocks */
body.landing-v2 .download-page .decor-download-1 {
    top: 12%;
    left: 3%;
    width: 90px;
    transform: rotate(-12deg);
    animation-delay: 0s;
}

body.landing-v2 .download-page .decor-download-2 {
    top: 18%;
    right: 3%;
    width: 80px;
    transform: rotate(15deg);
    animation-delay: 1.2s;
}

body.landing-v2 .download-page .decor-download-3 {
    top: 55%;
    left: 2%;
    width: 60px;
    transform: rotate(22deg);
    animation-delay: 2.4s;
}

body.landing-v2 .download-page .decor-download-4 {
    top: 62%;
    right: 2%;
    width: 65px;
    transform: rotate(-18deg);
    animation-delay: 0.6s;
}

body.landing-v2 .download-page .decor-download-5 {
    bottom: 6%;
    left: 6%;
    width: 55px;
    transform: rotate(14deg);
    animation-delay: 3s;
}

body.landing-v2 .download-page .decor-download-6 {
    bottom: 8%;
    right: 5%;
    width: 50px;
    transform: rotate(-24deg);
    animation-delay: 1.8s;
}

/* Screenshot rows, photo pairs, etc. in for-brands */
body.landing-v2 .subpage-content .screenshot-row img,
body.landing-v2 .subpage-content .photo-pair img,
body.landing-v2 .subpage-content .media-row img,
body.landing-v2 .subpage-content .media-row video {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
    border-radius: 12px;
}

body.landing-v2 .subpage-content .stats-row .stat {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    color: #0f172a;
}

body.landing-v2 .subpage-content .stats-row .num {
    color: #2563ff;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
}

body.landing-v2 .subpage-content .stats-row .label {
    color: rgba(15, 23, 42, 0.7);
    font-family: 'Inter', sans-serif;
}

body.landing-v2 .subpage-content .cta {
    background: linear-gradient(135deg, #2563ff, #7b3dff);
    color: #ffffff;
}

body.landing-v2 .subpage-content .cta a {
    color: #ffffff;
}

body.landing-v2 .subpage-content .playable {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

body.landing-v2 .subpage-content .award-list li {
    color: rgba(15, 23, 42, 0.82);
}

@media (max-width: 900px) {
    body.landing-v2 .subpage-content .decor-content-1,
    body.landing-v2 .subpage-content .decor-content-2,
    body.landing-v2 .subpage-content .decor-content-2b,
    body.landing-v2 .subpage-content .decor-content-3,
    body.landing-v2 .subpage-content .decor-content-3b,
    body.landing-v2 .subpage-content .decor-content-4,
    body.landing-v2 .about-content .decor-content-1,
    body.landing-v2 .about-content .decor-content-2,
    body.landing-v2 .about-content .decor-content-3,
    body.landing-v2 .releases-page .decor-content-1,
    body.landing-v2 .releases-page .decor-content-1b,
    body.landing-v2 .releases-page .decor-content-2,
    body.landing-v2 .releases-page .decor-content-2b,
    body.landing-v2 .download-page .decor-download-3,
    body.landing-v2 .download-page .decor-download-4 {
        display: none;
    }
}

