html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    color: #e5edf5;
    background-color: #07111a;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px), radial-gradient(circle at 12% 18%, rgba(57,216,111,0.12), transparent 18%), linear-gradient(135deg, #07111a 0%, #0c1620 45%, #07111a 100%);
    background-size: 40px 40px, 40px 40px, auto, auto;
}

main[role="main"] {
    flex: 1 0 auto;
    width: 100%;
    display: block;
}

header,
footer {
    flex-shrink: 0;
}

/* ------------------------------
   NAVBAR
------------------------------ */
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.18);
    padding: 6px 10px;
    border-radius: 10px;
}

    .navbar-toggler:focus {
        box-shadow: none;
        border-color: rgba(57,216,111,0.5);
    }

.navbar-toggler-icon {
    filter: invert(1);
}

@media (max-width: 991.98px) {
    .navbar .container {
        align-items: center;
    }

    .navbar-collapse {
        margin-top: 14px;
        padding: 14px 16px;
        border-radius: 14px;
        background: rgba(8, 14, 22, 0.96);
        border: 1px solid rgba(255,255,255,0.08);
    }

    .navbar-nav {
        gap: 6px;
    }

    .navbar .nav-link {
        display: block;
        padding: 10px 12px;
        border-radius: 10px;
    }

        .navbar .nav-link:hover,
        .navbar .nav-link:focus {
            background: rgba(255,255,255,0.05);
        }
}
.navbar-toggler {
    width: 54px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(57,216,111,0.45);
    border-radius: 12px;
    background: rgba(8, 14, 22, 0.92);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .navbar-toggler:focus {
        box-shadow: none;
        border-color: rgba(57,216,111,0.7);
    }

.navbar-toggler-icon {
    background-image: none !important;
    width: 22px;
    height: 14px;
    position: relative;
    display: inline-block;
}

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon {
        border-top: 2px solid #ffffff;
    }

        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after {
            content: "";
            position: absolute;
            left: 0;
            width: 22px;
        }

.navbar-toggler-icon {
    border-top: 2px solid #ffffff;
}

    .navbar-toggler-icon::before {
        top: 5px;
    }

    .navbar-toggler-icon::after {
        top: 10px;
    }
.navbar {
    position: relative;
    z-index: 1000;
    background: rgba(5, 10, 15, 0.92) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ffffff !important;
}

    .navbar-brand img {
        height: 40px;
        width: auto;
    }

.navbar .nav-link {
    color: #d6deea !important;
    transition: color 0.2s ease;
}

    .navbar .nav-link:hover,
    .navbar .nav-link:focus {
        color: #39d86f !important;
    }

/* ------------------------------
   HERO
------------------------------ */
.hero-full {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-full-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, rgba(5,10,15,0.82) 0%, rgba(5,10,15,0.58) 36%, rgba(5,10,15,0.30) 58%, rgba(5,10,15,0.62) 100%), linear-gradient(to bottom, rgba(5,10,15,0.28) 0%, rgba(5,10,15,0.12) 45%, rgba(5,10,15,0.56) 100%);
}

.hero-full-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin-left: 8vw;
    margin-right: 20px;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 20px;
    padding: 8px 14px;
    border: 1px solid rgba(159,242,178,0.22);
    border-radius: 999px;
    background: rgba(8,16,24,0.35);
    color: #9ff2b2;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.hero-full-title {
    margin: 0 0 22px 0;
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #f8fafc;
    text-shadow: 0 10px 28px rgba(0,0,0,0.32);
}

.hero-full-text {
    max-width: 700px;
    margin: 0 0 32px 0;
    font-size: 1.2rem;
    line-height: 1.75;
    color: #dbe5ef;
    text-shadow: 0 4px 18px rgba(0,0,0,0.28);
}

.hero-full-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-hero-primary {
    background: #39d86f;
    color: #08110a;
    box-shadow: 0 12px 30px rgba(57,216,111,0.22);
}

    .btn-hero-primary:hover,
    .btn-hero-primary:focus {
        background: #55e583;
        color: #08110a;
    }

.btn-hero-secondary {
    border: 1px solid rgba(255,255,255,0.34);
    background: rgba(255,255,255,0.05);
    color: #ffffff;
}

    .btn-hero-secondary:hover,
    .btn-hero-secondary:focus {
        border-color: rgba(255,255,255,0.55);
        background: rgba(255,255,255,0.09);
        color: #ffffff;
    }

.hero-bottom-glow {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 220px;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(80,180,255,0.18) 0%, rgba(57,216,111,0.10) 22%, rgba(255,255,255,0.04) 38%, rgba(7,11,16,0) 72%);
}

.hero-bottom-shine {
    position: absolute;
    left: -20%;
    bottom: 8%;
    width: 140%;
    height: 180px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(120,220,255,0.05) 20%, rgba(255,255,255,0.12) 50%, rgba(57,216,111,0.08) 72%, rgba(255,255,255,0) 100%);
    filter: blur(24px);
    transform: rotate(-2deg);
    opacity: 0.9;
}

/* ------------------------------
   PAGE CONTENT
------------------------------ */
.home-section {
    position: relative;
    z-index: 3;
    padding-top: 60px;
    padding-bottom: 40px;
    background: radial-gradient(ellipse at top center, rgba(90,190,255,0.14) 0%, rgba(57,216,111,0.08) 14%, rgba(255,255,255,0.03) 24%, rgba(7,11,16,0.86) 42%, rgba(7,11,16,0.97) 62%, rgba(7,11,16,1) 100%), linear-gradient(to bottom, rgba(10,16,24,0.10) 0%, rgba(7,11,16,0.92) 26%, rgba(7,11,16,1) 100%);
}

.feature-card {
    height: 100%;
    background: rgba(17,23,32,0.78);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

    .feature-card h1,
    .feature-card h2,
    .feature-card h3,
    .feature-card h4 {
        color: #f8fafc;
        margin-bottom: 12px;
    }

    .feature-card p,
    .feature-card li {
        color: #cbd5e1;
        line-height: 1.7;
    }

    .feature-card ul {
        margin-top: 12px;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .feature-card li {
        margin-bottom: 10px;
    }

.container h1,
.container h2,
.container h3,
.container h4 {
    color: #f8fafc;
}

.container p,
.container li,
.container .lead {
    color: #cbd5e1;
}

hr {
    border-color: rgba(255,255,255,0.12);
    opacity: 1;
}

/* ------------------------------
   PAGE-SPECIFIC HERO IMAGES
------------------------------ */
.hero-home {
    background: url('/Images/hero-optimization-engine.webp') center center / cover no-repeat !important;
}
.hero-about {
    background-image: url('/images/hero-system-architecture.webp');
}

.hero-blog {
    background-image: url('/images/hero-optimization-researc.webp');
}

.hero-demo {
    background-image: url('/Images/hero-demo-lab.webp');
}

.hero-contact {
    background-image: url('/images/hero-network-connection.webp');
}

.hero-technology {
    background-image: url('/images/hero-algorithm-technology.webp');
}

/* ------------------------------
   BLOG / ARTICLE
------------------------------ */
.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .blog-card-link:hover .blog-card,
    .blog-card-link:focus .blog-card {
        transform: translateY(-4px);
        border-color: rgba(159,242,178,0.22);
        box-shadow: 0 14px 34px rgba(0,0,0,0.28);
    }

.blog-card {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.article-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px;
}

    .article-content h2 {
        margin-top: 36px;
        margin-bottom: 16px;
        color: #f8fafc;
    }

    .article-content p {
        font-size: 1.08rem;
        line-height: 1.9;
        color: #d7e1ec;
        margin-bottom: 18px;
    }

    .article-content ul {
        margin-bottom: 20px;
        padding-left: 22px;
    }

    .article-content li {
        margin-bottom: 10px;
        line-height: 1.8;
        color: #d7e1ec;
    }

.article-diagram {
    margin: 32px 0;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(111,195,255,0.12);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

    .article-diagram svg {
        display: block;
        width: 100%;
        height: auto;
    }

.diagram-caption {
    margin-top: 16px;
    margin-bottom: 0;
    color: #9fb3c8;
    font-size: 0.96rem;
}

.formula-block {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(111,195,255,0.22);
    border-radius: 18px;
    padding: 20px 24px;
    margin: 24px 0;
}

.formula-title {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9fb3c8;
    margin-bottom: 10px;
}

.formula-body {
    font-size: 1.35rem;
    color: #e6f3ff;
    font-weight: 600;
    line-height: 1.4;
    overflow-x: auto;
}

.formula-note {
    color: #b9c9d8;
    margin-top: 12px;
}

/* ------------------------------
   DEMO LAB
------------------------------ */
.demo-hero-shell {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 56px;
    padding-top: 90px;
    padding-bottom: 70px;
}

.demo-hero-copy {
    min-width: 0;
    max-width: 620px;
}

.demo-hero-media {
    width: 420px;
    justify-self: end;
}

.demo-hero-video-wrap {
    position: relative;
    z-index: 12;
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    background: #0b1118;
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.hero-demo-video {
    position: relative;
    z-index: 13;
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border-radius: 14px;
    background: #000;
    filter: none;
    opacity: 1;
}
.demo-stat {
    height: 100%;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.demo-stat-label {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9fb3c8;
    margin-bottom: 8px;
}

.demo-stat-value {
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.25;
}

    .demo-stat-value.small-value {
        font-size: 1rem;
    }

.demo-panel {
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

    .demo-panel h4 {
        margin-bottom: 10px;
        color: #f8fafc;
    }

    .demo-panel p {
        color: #cbd5e1;
        line-height: 1.7;
    }

.demo-placeholder {
    min-height: 220px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px dashed rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.02);
    color: #9fb3c8;
    text-align: center;
    padding: 20px;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.pipeline-step {
    height: 100%;
    padding: 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}

.pipeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(57,216,111,0.14);
    color: #9ff2b2;
    font-weight: 700;
}

/* ------------------------------
   HELIX INTRO
------------------------------ */
.helix-intro {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    animation: helixIntroFadeIn 0.5s ease-out forwards, helixIntroFadeOut 1.6s ease 4.8s forwards;
}

.helix-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.helix-strand,
.helix-rung {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: url(#helixGlowStrong);
}

.strand-a {
    stroke: url(#helixBlueA);
    stroke-width: 6;
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    opacity: 0.98;
    animation: helixDrawSlow 2.8s cubic-bezier(.2,.8,.2,1) 0.2s forwards;
}

.strand-b {
    stroke: url(#helixBlueB);
    stroke-width: 6;
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    opacity: 0.92;
    animation: helixDrawSlow 3.1s cubic-bezier(.2,.8,.2,1) 0.45s forwards;
}

.helix-rung {
    stroke: rgba(210,247,255,0.85);
    stroke-width: 3;
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    opacity: 0;
}

.rung-1 {
    animation: helixRungSlow 0.9s ease-out 1.2s forwards;
}

.rung-2 {
    animation: helixRungSlow 0.9s ease-out 1.45s forwards;
}

.rung-3 {
    animation: helixRungSlow 0.9s ease-out 1.7s forwards;
}

.rung-4 {
    animation: helixRungSlow 0.9s ease-out 1.95s forwards;
}

.rung-5 {
    animation: helixRungSlow 0.9s ease-out 2.2s forwards;
}

.rung-6 {
    animation: helixRungSlow 0.9s ease-out 2.45s forwards;
}

.helix-intro::after {
    content: "";
    position: absolute;
    inset: -20%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(120,220,255,0.00) 28%, rgba(115,235,255,0.10) 40%, rgba(255,255,255,0.24) 48%, rgba(125,235,255,0.18) 54%, rgba(80,170,255,0.12) 60%, rgba(255,255,255,0) 74%);
    transform: translate(28%, -28%) rotate(-32deg);
    filter: blur(20px);
    opacity: 0;
    animation: helixSweepDiagonal 3.2s cubic-bezier(.2,.8,.2,1) 0.55s forwards;
}

.signal-dot {
    fill: #dffaff;
    filter: url(#signalGlow);
    opacity: 0;
    box-shadow: 0 0 10px rgba(160,235,255,0.7);
}

.s1, .s2, .s3, .s7 {
    offset-path: path("M 1720 -120 C 1500 80, 1460 220, 1340 300 S 1120 440, 1040 560 S 880 760, 700 860 S 420 980, 180 1220");
}

.s4, .s5, .s6, .s8 {
    offset-path: path("M 1840 -40 C 1600 180, 1500 280, 1380 360 S 1160 500, 1080 620 S 900 820, 740 920 S 470 1040, 260 1280");
}

.s1 {
    animation: signalPulse 3.8s ease-in-out 0.9s infinite, moveA1 3.8s linear 0.9s infinite;
}

.s2 {
    animation: signalPulse 4.2s ease-in-out 1.4s infinite, moveA2 4.2s linear 1.4s infinite;
}

.s3 {
    animation: signalPulse 4.8s ease-in-out 2.0s infinite, moveA3 4.8s linear 2.0s infinite;
}

.s4 {
    animation: signalPulse 3.9s ease-in-out 1.1s infinite, moveB1 3.9s linear 1.1s infinite;
}

.s5 {
    animation: signalPulse 4.4s ease-in-out 1.8s infinite, moveB2 4.4s linear 1.8s infinite;
}

.s6 {
    animation: signalPulse 5.0s ease-in-out 2.5s infinite, moveB3 5.0s linear 2.5s infinite;
}

.s7 {
    animation: signalPulse 4.6s ease-in-out 2.2s infinite, moveA4 4.6s linear 2.2s infinite;
}

.s8 {
    animation: signalPulse 4.7s ease-in-out 2.8s infinite, moveB4 4.7s linear 2.8s infinite;
}

/* ------------------------------
   FOOTER
------------------------------ */
.footer {
    z-index: 20;
    background: #07111a;
    color: #cbd5e1 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
}

body > footer.footer {
    margin-top: auto;
    position: relative;
    bottom: auto;
    width: 100%;
    line-height: normal;
    white-space: normal;
}

.footer a {
    color: #9ff2b2;
    text-decoration: none;
}

    .footer a:hover {
        color: #ffffff;
    }

/* ------------------------------
   COOKIE BANNER
------------------------------ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(8,14,22,0.96);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
}

    .cookie-banner p {
        margin: 0;
        color: #dbe5ef;
        line-height: 1.6;
    }

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

    .cookie-buttons button {
        border: none;
        border-radius: 10px;
        padding: 10px 16px;
        font-weight: 700;
        cursor: pointer;
    }

        .cookie-buttons button:first-child {
            background: #39d86f;
            color: #08110a;
        }

        .cookie-buttons button:last-child {
            background: rgba(255,255,255,0.08);
            color: #f8fafc;
            border: 1px solid rgba(255,255,255,0.14);
        }

/* ------------------------------
   ANIMATIONS
------------------------------ */
@keyframes helixIntroFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes helixIntroFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes helixDrawSlow {
    0% {
        stroke-dashoffset: 2200;
        opacity: 0.15;
    }

    25% {
        opacity: 0.95;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes helixRungSlow {
    from {
        stroke-dashoffset: 260;
        opacity: 0;
    }

    to {
        stroke-dashoffset: 0;
        opacity: 0.95;
    }
}

@keyframes helixSweepDiagonal {
    0% {
        transform: translate(38%, -38%) rotate(-32deg);
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    55% {
        opacity: 1;
    }

    100% {
        transform: translate(-42%, 42%) rotate(-32deg);
        opacity: 0;
    }
}

@keyframes signalPulse {
    0% {
        opacity: 0;
        transform: scale(0.6);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.15);
    }

    90% {
        opacity: 0.9;
        transform: scale(0.9);
    }

    100% {
        opacity: 0;
        transform: scale(0.6);
    }
}

@keyframes moveA1 {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveA2 {
    from {
        offset-distance: 12%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveA3 {
    from {
        offset-distance: 28%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveA4 {
    from {
        offset-distance: 45%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveB1 {
    from {
        offset-distance: 0%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveB2 {
    from {
        offset-distance: 16%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveB3 {
    from {
        offset-distance: 34%;
    }

    to {
        offset-distance: 100%;
    }
}

@keyframes moveB4 {
    from {
        offset-distance: 52%;
    }

    to {
        offset-distance: 100%;
    }
}

/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 1200px) {
    .pipeline-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .hero-full {
        min-height: auto;
        background-position: center center;
    }

    .hero-full-content {
        margin-left: 5vw;
        margin-right: 5vw;
        max-width: none;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-full-title {
        font-size: 2.2rem;
        line-height: 1.08;
    }

    .hero-full-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-full-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-width: 0;
    }

    .demo-hero-shell {
        gap: 24px;
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .demo-hero-media {
        width: 100%;
        max-width: 100%;
    }

    .hero-demo-video {
        border-radius: 10px;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-full {
        min-height: auto;
        background-position: center center;
    }

    .hero-full-content {
        max-width: 100%;
        margin-left: 6vw;
        margin-right: 6vw;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-full-text {
        font-size: 1.05rem;
        line-height: 1.65;
    }

    .demo-hero-shell {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .demo-hero-copy {
        max-width: 100%;
    }

    .demo-hero-media {
        width: 100%;
        max-width: 520px;
        justify-self: start;
    }

    .pipeline-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

        .cookie-buttons button {
            flex: 1;
        }
}
.hero-demo .hero-full-overlay {
    background: linear-gradient(to right, rgba(5,10,15,0.72) 0%, rgba(5,10,15,0.42) 36%, rgba(5,10,15,0.18) 58%, rgba(5,10,15,0.38) 100%), linear-gradient(to bottom, rgba(5,10,15,0.16) 0%, rgba(5,10,15,0.08) 45%, rgba(5,10,15,0.24) 100%);
}
html,
body,
* {
    cursor: default;
}

a,
button,
.navbar-toggler,
.nav-link {
    cursor: pointer;
}
