/* =========================================================
   LnEFlow Product Page
   Dark Blue / Premium Engineering Software Theme
========================================================= */

.lne-product-page {

    --lne-navy: #030e2a;
    --lne-dark: #061633;
    --lne-dark-2: #081d3d;

    --lne-blue: #0a7ea4;
    --lne-blue-dark: #07577d;
    --lne-blue-light: #1299bd;

    --lne-cyan: #16d4e8;
    --lne-cyan-light: #5ceafa;

    --lne-text: #ffffff;
    --lne-muted: rgba(255,255,255,0.68);
    --lne-muted-light: rgba(255,255,255,0.82);

    --lne-card: rgba(10, 35, 70, 0.72);
    --lne-card-dark: rgba(5, 24, 52, 0.82);

    --lne-border: rgba(255,255,255,0.10);
    --lne-border-blue: rgba(22,212,232,0.22);

    color: var(--lne-text);

    background:
        linear-gradient(
            180deg,
            #030e2a 0%,
            #061633 45%,
            #030e2a 100%
        );

    overflow: hidden;
}


/* =========================================================
   COMMON
========================================================= */

.product-container {

    width: min(1180px, calc(100% - 40px));

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


.product-section {

    padding: 100px 0;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    max-width: 760px;

    margin-bottom: 55px;

}


.section-heading.centered {

    text-align: center;

    margin-left: auto;
    margin-right: auto;

}


.section-kicker {

    display: inline-block;

    margin-bottom: 14px;

    color: var(--lne-cyan);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

}


.section-heading h2,
.application-intro h2,
.documentation-layout h2,
.relationship-content h2,
.platform-card h2,
.product-cta h2 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.1;

    letter-spacing: -1.5px;

}


.section-heading h2 span,
.application-intro h2 span,
.documentation-layout h2 span,
.relationship-content h2 span,
.platform-card h2 span,
.product-cta h2 span {

    color: var(--lne-cyan);

}


.section-heading p,
.application-intro > p,
.documentation-layout p,
.relationship-content p,
.platform-card p,
.product-cta p {

    color: var(--lne-muted);

    font-size: 17px;

    line-height: 1.8;

}


/* =========================================================
   HERO
========================================================= */

.product-hero {

    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    background:

        radial-gradient(
            circle at 75% 35%,
            rgba(22,212,232,0.12),
            transparent 30%
        ),

        radial-gradient(
            circle at 15% 70%,
            rgba(10,126,164,0.10),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #030e2a 0%,
            #061633 55%,
            #04142e 100%
        );

    border-bottom:
        1px solid rgba(255,255,255,0.08);

}


.product-hero .product-container {

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;

}


.product-hero-content {

    max-width: 650px;

}


/* =========================================================
   PRODUCT BADGE
========================================================= */

.product-brand-badge {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding: 8px 14px;

    border:
        1px solid
        rgba(22,212,232,0.25);

    border-radius: 30px;

    background:
        rgba(22,212,232,0.06);

    color: var(--lne-cyan);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;

}


.badge-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--lne-cyan);

    box-shadow:
        0 0 12px
        rgba(22,212,232,0.8);

}


/* =========================================================
   HERO TYPOGRAPHY
========================================================= */

.product-hero h1 {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(58px, 8vw, 100px);

    line-height: 0.95;

    letter-spacing: -5px;

}


.product-hero h1 span {

    background:
        linear-gradient(
            100deg,
            #0a7ea4,
            #16d4e8,
            #72f3ff
        );

    -webkit-background-clip: text;

    background-clip: text;

    color: transparent;

}


.product-hero h2 {

    max-width: 620px;

    margin: 24px 0 18px;

    color: #ffffff;

    font-size:
        clamp(24px, 3vw, 38px);

    line-height: 1.2;

}


.hero-description {

    max-width: 620px;

    margin: 0 0 12px;

    color: var(--lne-muted);

    font-size: 17px;

    line-height: 1.75;

}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 30px;

}


.product-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    min-height: 48px;

    padding: 0 23px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;

}


.product-btn:hover {

    transform: translateY(-2px);

}


.product-btn-primary {

    color: #ffffff;

    background:

        linear-gradient(
            135deg,
            #07577d,
            #0a7ea4,
            #16d4e8
        );

    box-shadow:
        0 10px 30px
        rgba(10,126,164,0.28);

}


.product-btn-secondary {

    color: #ffffff;

    border:
        1px solid
        rgba(255,255,255,0.18);

    background:
        rgba(255,255,255,0.06);

}


.product-btn-secondary:hover {

    background:
        rgba(22,212,232,0.10);

    border-color:
        rgba(22,212,232,0.35);

}


/* =========================================================
   PRODUCT META
========================================================= */

.product-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 28px;

}


.product-meta span {

    display: flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255,255,255,0.60);

    font-size: 12px;

    font-weight: 600;

}


.meta-check {

    color: var(--lne-cyan);

    font-style: normal;

}


/* =========================================================
   HERO VISUAL
========================================================= */

.product-hero-visual {

    position: relative;

    min-height: 470px;

    display: flex;

    justify-content: center;

    align-items: center;

}


.lne-symbol {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    color: transparent;

    font-size: 145px;

    font-weight: 800;

    letter-spacing: -18px;

    background:

        linear-gradient(
            145deg,
            #064c70,
            #0a7ea4 55%,
            #1ad8e8
        );

    -webkit-background-clip: text;

    background-clip: text;

    filter:

        drop-shadow(
            0 15px 25px
            rgba(6,76,112,0.30)
        );

}


.lne-symbol span {

    display: block;

}


/* =========================================================
   SIMULATION ORBITS
========================================================= */

.simulation-orbit {

    position: absolute;

    z-index: 2;

    width: 430px;

    height: 170px;

    border:
        1px solid
        rgba(10,126,164,0.35);

    border-radius: 50%;

    transform: rotate(-18deg);

}


.orbit-one {

    border-color:
        rgba(22,212,232,0.65);

}


.orbit-two {

    width: 470px;

    height: 210px;

    transform: rotate(17deg);

    border-color:
        rgba(7,87,125,0.30);

}


/* =========================================================
   PARTICLES
========================================================= */

.particle {

    position: absolute;

    z-index: 6;

    border-radius: 50%;

    background:

        radial-gradient(
            circle at 30% 25%,
            #ffffff,
            #22d8e7 25%,
            #0a7ea4 60%,
            #064a72
        );

    box-shadow:

        0 8px 20px
        rgba(7,87,125,0.35),

        0 0 30px
        rgba(22,212,232,0.25);

}


.particle-large {

    width: 58px;

    height: 58px;

}


.particle-medium {

    width: 34px;

    height: 34px;

}


.particle-small {

    width: 14px;

    height: 14px;

}


.particle-one {

    top: 65px;

    right: 100px;

}


.particle-two {

    bottom: 65px;

    left: 105px;

}


.particle-three {

    top: 90px;

    left: 125px;

}


.particle-four {

    bottom: 110px;

    right: 100px;

}


.particle-five {

    top: 130px;

    right: 40px;

}


.particle-six {

    bottom: 65px;

    right: 180px;

}


/* =========================================================
   SIMULATION LABEL
========================================================= */

.simulation-label {

    position: absolute;

    bottom: 20px;

    z-index: 7;

    padding: 7px 13px;

    border-radius: 20px;

    color: var(--lne-cyan);

    background:
        rgba(3,14,42,0.78);

    border:
        1px solid
        rgba(22,212,232,0.22);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .5px;

}


/* =========================================================
   INTRO
========================================================= */

.product-intro {

    background:

        linear-gradient(
            180deg,
            #061633,
            #071a37
        );

}


.intro-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.intro-card {

    padding: 32px;

    border:
        1px solid
        var(--lne-border);

    border-radius: 16px;

    background:

        linear-gradient(
            145deg,
            rgba(12,48,88,0.75),
            rgba(5,25,53,0.85)
        );

    transition:

        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

}


.intro-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(22,212,232,0.25);

    box-shadow:

        0 20px 50px
        rgba(0,0,0,0.25);

}


.intro-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 12px;

    color: #ffffff;

    background:

        linear-gradient(
            135deg,
            #07577d,
            #15cbdc
        );

    font-size: 22px;

}


.intro-card h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 20px;

}


.intro-card p {

    margin: 0;

    color: var(--lne-muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   CAPABILITIES
========================================================= */

.capabilities-section {

    background:

        #030e2a;

}


.capabilities-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.capability-card {

    position: relative;

    padding: 30px;

    min-height: 190px;

    border:
        1px solid
        var(--lne-border);

    border-radius: 14px;

    background:

        rgba(8,29,61,0.78);

    transition:

        transform .25s ease,
        border-color .25s ease,
        background .25s ease;

}


.capability-card:hover {

    transform: translateY(-5px);

    border-color:
        rgba(22,212,232,0.25);

    background:
        rgba(10,40,77,0.88);

}


.capability-number {

    margin-bottom: 25px;

    color:
        rgba(22,212,232,0.45);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;

}


.capability-card h3 {

    margin: 0 0 10px;

    color: #ffffff;

    font-size: 18px;

}


.capability-card p {

    margin: 0;

    color: var(--lne-muted);

    font-size: 14px;

    line-height: 1.65;

}


/* =========================================================
   APPLICATIONS
========================================================= */

.application-layout {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 90px;

    align-items: start;

}


.application-intro {

    position: sticky;

    top: 120px;

}


.text-link {

    display: inline-block;

    margin-top: 15px;

    color: var(--lne-cyan);

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

}


.text-link:hover {

    color: var(--lne-cyan-light);

}


.application-list {

    border-top:
        1px solid
        var(--lne-border);

}


.application-item {

    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 20px;

    padding: 28px 0;

    border-bottom:
        1px solid
        var(--lne-border);

}


.application-item > span {

    color: var(--lne-cyan);

    font-size: 12px;

    font-weight: 800;

}


.application-item h3 {

    margin: 0 0 7px;

    color: #ffffff;

    font-size: 20px;

}


.application-item p {

    margin: 0;

    color: var(--lne-muted);

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================================
   WORKFLOW
========================================================= */

.workflow-section {

    background:

        linear-gradient(
            135deg,
            #030e2a,
            #061633
        );

}


.workflow-section .section-kicker {

    color: var(--lne-cyan);

}


.workflow-section .section-heading h2 {

    color: #ffffff;

}


.workflow-section .section-heading h2 span {

    color: var(--lne-cyan);

}


.workflow-section .section-heading p {

    color:
        rgba(255,255,255,.65);

}


.workflow {

    display: flex;

    align-items: center;

    justify-content: center;

}


.workflow-step {

    width: 210px;

    text-align: center;

}


.step-number {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 18px;

    border:
        1px solid
        rgba(22,212,232,.35);

    border-radius: 50%;

    color: var(--lne-cyan);

    background:
        rgba(22,212,232,.08);

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 0 25px
        rgba(22,212,232,.06);

}


.workflow-step h3 {

    margin: 0 0 8px;

    color: #ffffff;

    font-size: 17px;

}


.workflow-step p {

    margin: 0;

    color:
        rgba(255,255,255,.55);

    font-size: 13px;

    line-height: 1.5;

}


.workflow-line {

    width: 70px;

    height: 1px;

    background:
        rgba(22,212,232,.30);

}


/* =========================================================
   PLATFORM
========================================================= */

.platform-section {

    background:

        #061633;

}


.platform-card {

    display: grid;

    grid-template-columns:
        1fr .8fr;

    gap: 60px;

    align-items: center;

    padding: 60px;

    border-radius: 22px;

    background:

        linear-gradient(
            145deg,
            rgba(11,45,82,.82),
            rgba(4,22,48,.90)
        );

    border:
        1px solid
        var(--lne-border);

}


.platform-status {

    display: grid;

    gap: 12px;

}


.platform-os {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px 22px;

    border-radius: 12px;

    background:
        rgba(22,212,232,.07);

    border:
        1px solid
        rgba(22,212,232,.12);

}


.platform-os strong {

    color: #ffffff;

}


.platform-os span {

    color: var(--lne-cyan);

    font-size: 12px;

    font-weight: 800;

}


.platform-os.future {

    background:
        rgba(255,255,255,.035);

    border-color:
        rgba(255,255,255,.07);

}


.platform-os.future span {

    color:
        rgba(255,255,255,.42);

}


/* =========================================================
   LICENSING
========================================================= */

.license-mini-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}


.license-mini {

    position: relative;

    padding: 35px;

    border:
        1px solid
        var(--lne-border);

    border-radius: 16px;

    background:

        linear-gradient(
            145deg,
            rgba(11,45,82,.78),
            rgba(4,23,49,.90)
        );

    transition:
        transform .25s ease,
        border-color .25s ease;

}


.license-mini:hover {

    transform: translateY(-5px);

    border-color:
        rgba(22,212,232,.25);

}


.license-mini.featured {

    border-color:
        rgba(10,126,164,.55);

    box-shadow:

        0 18px 50px
        rgba(10,126,164,.14);

}


.popular-label {

    position: absolute;

    top: 15px;

    right: 15px;

    padding: 5px 9px;

    border-radius: 20px;

    color: #ffffff;

    background:
        var(--lne-blue);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

}


.license-mini h3 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 24px;

}


.license-mini p {

    min-height: 65px;

    margin: 0 0 20px;

    color: var(--lne-muted);

    font-size: 14px;

    line-height: 1.65;

}


.license-mini a {

    color: var(--lne-cyan);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

}


.license-mini a:hover {

    color: var(--lne-cyan-light);

}


/* =========================================================
   DOCUMENTATION
========================================================= */

.documentation-section {

    background:
        #030e2a;

}


.documentation-layout {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 80px;

    align-items: center;

}


.documentation-links {

    border-top:
        1px solid
        var(--lne-border);

}


.documentation-links a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 19px 0;

    border-bottom:
        1px solid
        var(--lne-border);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        color .2s ease;

}


.documentation-links a:hover {

    color: var(--lne-cyan);

}


.documentation-links strong {

    color: var(--lne-cyan);

}


/* =========================================================
   RELATIONSHIP
========================================================= */

.relationship-section {

    background:

        #061633;

}


.relationship-card {

    display: grid;

    grid-template-columns:
        260px 1fr;

    gap: 60px;

    align-items: center;

    padding: 60px;

    border-radius: 24px;

    background:

        radial-gradient(
            circle at 15% 50%,
            rgba(22,212,232,.13),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            rgba(10,47,82,.90),
            rgba(4,22,48,.95)
        );

    border:
        1px solid
        rgba(22,212,232,.15);

}


.relationship-mark {

    width: 220px;

    height: 220px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:

        linear-gradient(
            145deg,
            #07577d,
            #0a7ea4,
            #16d4e8
        );

    box-shadow:

        0 25px 60px
        rgba(7,87,125,.28);

}


.relationship-mark span {

    color: #ffffff;

    font-size: 54px;

    font-weight: 800;

    letter-spacing: -5px;

}


.relationship-content h2 {

    font-size:
        clamp(30px,4vw,44px);

}


/* =========================================================
   FINAL CTA
========================================================= */

.product-cta {

    padding: 110px 0;

    text-align: center;

    background:

        radial-gradient(
            circle at 50% 20%,
            rgba(22,212,232,.18),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #030e2a,
            #061633
        );

}


.product-cta .section-kicker {

    color: var(--lne-cyan);

}


.product-cta h2 {

    color: #ffffff;

}


.product-cta h2 span {

    color: var(--lne-cyan);

}


.product-cta p {

    max-width: 650px;

    margin: 0 auto;

    color:
        rgba(255,255,255,.65);

}


.product-cta .hero-buttons {

    justify-content: center;

}


.product-cta .product-btn-secondary {

    color: #ffffff;

    border-color:
        rgba(255,255,255,.20);

    background:
        rgba(255,255,255,.06);

}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.product-hero-glow {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;

}


.glow-one {

    width: 300px;

    height: 300px;

    right: 5%;

    top: 10%;

    background:
        rgba(22,212,232,.08);

}


.glow-two {

    width: 250px;

    height: 250px;

    left: 20%;

    bottom: -100px;

    background:
        rgba(7,87,125,.09);

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .product-hero .product-container {

        grid-template-columns: 1fr;

        gap: 30px;

        padding-top: 70px;

        padding-bottom: 70px;

    }


    .product-hero-content {

        max-width: 800px;

    }


    .product-hero-visual {

        min-height: 400px;

    }


    .intro-grid,
    .capabilities-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .application-layout,
    .documentation-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .application-intro {

        position: static;

    }


    .platform-card {

        grid-template-columns: 1fr;

    }


    .relationship-card {

        grid-template-columns: 1fr;

        text-align: center;

    }


    .relationship-mark {

        margin: 0 auto;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .product-container {

        width:
            min(100% - 28px, 1180px);

    }


    .product-section {

        padding: 70px 0;

    }


    .product-hero {

        min-height: auto;

    }


    .product-hero h1 {

        font-size: 64px;

        letter-spacing: -4px;

    }


    .product-hero h2 {

        font-size: 25px;

    }


    .hero-description {

        font-size: 15px;

    }


    .product-meta {

        flex-direction: column;

        gap: 10px;

    }


    .product-hero-visual {

        min-height: 330px;

        transform: scale(.82);

        margin-top: -20px;

    }


    .intro-grid,
    .capabilities-grid,
    .license-mini-grid {

        grid-template-columns: 1fr;

    }


    .workflow {

        flex-direction: column;

        gap: 20px;

    }


    .workflow-line {

        width: 1px;

        height: 35px;

    }


    .platform-card,
    .relationship-card {

        padding: 30px 22px;

    }


    .relationship-mark {

        width: 170px;

        height: 170px;

    }


    .relationship-mark span {

        font-size: 42px;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .product-btn {

        width: 100%;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .product-hero h1 {

        font-size: 55px;

    }


    .product-hero-visual {

        transform: scale(.70);

        margin-left: -40px;

        margin-right: -40px;

    }


    .section-heading h2,
    .application-intro h2,
    .documentation-layout h2,
    .relationship-content h2,
    .platform-card h2,
    .product-cta h2 {

        font-size: 31px;

    }

}