/* ============================================================
   AQUILA — Norway Launch landing page
   Page-level components built on the Aquila design system
   (tokens, type scale, buttons + footer live in style.css)
   ============================================================ */

:root {
    --nl-ribbon-h: 3rem;
    --nl-panel: #000000ba;
    --nl-hairline: rgba(255, 255, 255, 0.12);
    --nl-rail: #0086F733;
}

/* ---------- 0. LAUNCH RIBBON ---------- */

.launch-ribbon {
    position: relative;
    z-index: 100000;
    height: var(--nl-ribbon-h);
    background: var(--site-liner-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.launch-ribbon::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 35%, rgba(255, 255, 255, .28) 50%, rgba(255, 255, 255, 0) 65%);
    transform: translateX(-100%);
    animation: ribbon-sheen 6s ease-in-out 1.4s infinite;
    pointer-events: none;
}

@keyframes ribbon-sheen {
    0% { transform: translateX(-100%); }
    45%, 100% { transform: translateX(100%); }
}

.launch-ribbon .base-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
}

.launch-ribbon p {
    font-weight: 600;
    font-size: .8125rem;
    line-height: 1;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--site-white-color);
    display: flex;
    align-items: center;
    gap: .7rem;
    white-space: nowrap;
}

.launch-ribbon .nl-flag {
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
}

.launch-ribbon .nl-ribbon-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    flex: 0 0 6px;
    animation: nl-pulse 2.4s ease-in-out infinite;
}

@keyframes nl-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .35; transform: scale(.7); }
}

/* header sits directly beneath the ribbon, snaps to the top when sticky */
body.nl-page header.site-header { top: var(--nl-ribbon-h); }
body.nl-page header.site-header.aquila-sticky-header { top: 0; }

/* ---------- shared page furniture ---------- */

.nl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .625rem;
    padding: .6rem 1.125rem;
    border-radius: 1.125rem;
    font-weight: 600;
    font-size: .75rem;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--site-white-color);
    position: relative;
    isolation: isolate;
    background: rgba(0, 5, 15, .55);
}

/* gradient hairline border — same lockup as the nav .bubble */
.nl-eyebrow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to right, #0544E4, #008CFF);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.nl-kicker {
    font-weight: 600;
    font-size: .8125rem;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #4C9EFF;
    display: block;
    margin-bottom: 1.5rem;
}

.nl-lede {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--site-ash-color);
}

.nl-lede strong {
    font-weight: 600;
    color: var(--site-white-color);
}

.nl-rule {
    height: 1px;
    width: 100%;
    background: var(--nl-hairline);
}

/* ---------- 1. HERO ---------- */

.nl-hero {
    position: relative;
    min-height: calc(100svh - var(--nl-ribbon-h));
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: 12rem;
    padding-bottom: 5.7rem;
}

.nl-hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.nl-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: nl-drift 26s ease-in-out infinite alternate;
}

@keyframes nl-drift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

.nl-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 10, 33, .85) 0%, rgba(0, 10, 33, .25) 38%, #000A1D 100%),
        linear-gradient(90deg, rgba(0, 10, 33, .92) 0%, rgba(0, 10, 33, .35) 55%, rgba(0, 10, 33, .8) 100%);
}

.nl-hero-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5rem;
    width: 100%;
}

.nl-hero-copy { max-width: 47rem; flex: 1 1 auto; }

.nl-hero-copy h1 {
    margin-top: 1.875rem;
    text-wrap: balance;
}

.nl-hero-copy .banner-sub-headline {
    font-size: 1.5rem;
    line-height: 1.45;
    margin-top: 1.875rem;
    max-width: 38rem;
    color: #C6CEDC;
}

.nl-hero-copy .banner-sub-headline b {
    font-weight: 600;
    color: #fff;
}

/* route graphic — Silicon Valley / Houston → Stavanger */
.nl-route {
    margin-top: 3.125rem;
    max-width: 34rem;
    width: 100%;
}

.nl-route svg { width: 100%; height: auto; overflow: visible; }

.nl-route .nl-arc {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: nl-draw 2.6s cubic-bezier(.22, .61, .36, 1) 1.1s forwards;
}

@keyframes nl-draw { to { stroke-dashoffset: 0; } }

.nl-route .nl-spark {
    offset-path: path("M14 56 C 120 6, 320 6, 426 44");
    offset-rotate: 0deg;
    animation: nl-travel 4.2s cubic-bezier(.5, 0, .5, 1) 2.6s infinite;
    opacity: 0;
}

@keyframes nl-travel {
    0% { offset-distance: 0%; opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { offset-distance: 100%; opacity: 0; }
}

.nl-route-label {
    font-weight: 600;
    font-size: .6875rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    fill: #8E97A8;
}

.nl-route-label.is-live { fill: #fff; }

/* hero form card */
.nl-form-card {
    background: #00000099;
    border: 1px solid var(--nl-hairline);
    border-radius: 2rem;
    padding: 2.5rem;
    max-width: 27.5rem;
    flex: 0 0 27.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nl-form-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background: var(--site-liner-bg);
}

.nl-form-card .nl-form-title {
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.3;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.nl-form .form-fields { margin-bottom: 2.5rem; }
.nl-form .form-input { padding-top: .5rem; }
.nl-form .section-btn button { width: 100%; }

.nl-scroll-cue {
    position: absolute;
    left: 2.5rem;
    bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    font-size: .6875rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--site-ash-color);
    z-index: 20;
}

.nl-scroll-cue span.nl-cue-line {
    width: 3.75rem;
    height: 1px;
    background: linear-gradient(90deg, #008CFF, rgba(0, 140, 255, 0));
    position: relative;
    overflow: hidden;
}

.nl-scroll-cue span.nl-cue-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translateX(-100%);
    animation: nl-cue 2.6s ease-in-out infinite;
}

@keyframes nl-cue {
    0% { transform: translateX(-100%); }
    60%, 100% { transform: translateX(100%); }
}

/* ---------- 2. VIDEO / CASE STUDY ---------- */

.nl-case { padding-top: 9.375rem; padding-bottom: 9.375rem; position: relative; overflow: hidden; }

.nl-case-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.75rem;
    margin-bottom: 3.75rem;
}

.nl-case-head .section-headline { max-width: 46rem; }
.nl-case-head .nl-lede { max-width: 30rem; }

.nl-video {
    position: relative;
    border-radius: 3.125rem;
    overflow: hidden;
    aspect-ratio: 16 / 8.4;
    background: #000;
}

.nl-video img.nl-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1), opacity .5s ease;
}

.nl-video:hover img.nl-video-poster { transform: scale(1.03); }

.nl-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 10, 33, .3) 0%, rgba(0, 10, 33, 0) 40%, rgba(0, 10, 33, .45) 100%);
    pointer-events: none;
}

.nl-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
}

.nl-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: 6.5rem;
    height: 6.5rem;
    border-radius: 50%;
    background: linear-gradient(to right, #0544E4, #008CFF, #0544E4, #008CFF);
    background-size: 350% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-position .5s linear, transform .4s cubic-bezier(.22, .61, .36, 1);
}

.nl-play::before {
    content: "";
    position: absolute;
    inset: -.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .28);
    animation: nl-halo 3s ease-out infinite;
}

@keyframes nl-halo {
    0% { transform: scale(.92); opacity: .9; }
    100% { transform: scale(1.28); opacity: 0; }
}

.nl-video:hover .nl-play { background-position: 100% 0; transform: translate(-50%, -50%) scale(1.06); }
.nl-play svg { margin-left: .3rem; }

/* ---------- 3. TRUST BAR / NUMBERS ---------- */

.nl-numbers {
    background: url("../images/wave-blue-bg.webp");
    background-position: 95% 140%;
    background-repeat: no-repeat;
    background-size: 250% 125%;
    border-bottom-left-radius: 3.75rem;
    border-bottom-right-radius: 3.75rem;
    overflow: hidden;
    position: relative;
    padding-top: 9.375rem;
    padding-bottom: 9.375rem;
}

.nl-numbers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #000A1D 0%, rgba(0, 10, 29, .35) 55%, rgba(0, 10, 29, .75) 100%);
}

.nl-numbers-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.75rem;
    margin-bottom: 3.125rem;
}

.nl-numbers-head .section-headline { max-width: 54rem; }

@media (min-width: 1025px) {
    .nl-numbers-head > div { flex: 1 1 auto; min-width: 0; }
    .nl-numbers-head .nl-lede { flex: 0 1 24rem; }
}

.nl-stats-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
}

.nl-stat {
    background: var(--nl-panel);
    border-radius: 3.125rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

.nl-stat:hover { transform: translateY(-6px); }

.nl-stat .stats-number-count { letter-spacing: -4px; }

.nl-stat-hours { grid-column: span 7; grid-row: span 2; }
.nl-stat-tests { grid-column: span 5; }
.nl-stat-fail { grid-column: span 5; }

/* number and its label read as one unit when there is nothing beneath them */
.nl-stat-tests,
.nl-stat-fail {
    justify-content: flex-start;
    gap: 1.25rem;
}
.nl-stat-rigs { grid-column: span 4; }
.nl-stat-dnv { grid-column: span 4; }
.nl-stat-cta { grid-column: span 4; }

.nl-stat-media {
    border-radius: 2.25rem;
    overflow: hidden;
    flex: 1 1 auto;
    min-height: 13rem;
}

.nl-stat-media .video-on-hover { height: 100%; }
.nl-stat-media .video-on-hover img { height: 100%; object-fit: cover; }

/* 65% — meter treatment */
.nl-meter {
    width: 100%;
    height: 3px;
    background: var(--nl-rail);
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
}

.nl-meter i {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: linear-gradient(334.07deg, #73FBFD 16.25%, #195BF5 83.79%);
}

/* DNV card */
.nl-stat-dnv {
    background:
        linear-gradient(114.6deg, rgba(0, 7, 18, .85) -0.01%, rgba(0, 7, 18, 0) 99.99%),
        linear-gradient(93.47deg, #0544E4 2.86%, #008CFF 100.01%);
    justify-content: space-between;
}

.nl-stat-dnv .nl-badge {
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8125rem;
    letter-spacing: .06em;
}

.nl-stat-dnv h5 {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.15;
}

.nl-stat-dnv p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .78);
    margin-top: .875rem;
}

/* CTA card */
.nl-stat-cta {
    background: var(--nl-panel);
    align-items: flex-start;
    justify-content: center;
}

/* ---------- 3.5 TRUSTED BY ---------- */

.nl-trusted { padding-top: 9.375rem; padding-bottom: 9.375rem; overflow: hidden; }

.nl-trusted-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3.75rem;
    margin-bottom: 4.68rem;
}

.nl-trusted-head h2 {
    font-weight: 400;
    font-size: 2.75rem;
    line-height: 1.2;
    max-width: 44rem;
    text-wrap: balance;
}

.nl-trusted-head p {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--site-ash-color);
    max-width: 22rem;
    border-left: 1px solid var(--nl-hairline);
    padding-left: 2rem;
}

.nl-marquee {
    position: relative;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.nl-marquee + .nl-marquee { margin-top: 3.125rem; }

.nl-marquee-track {
    display: flex;
    align-items: center;
    gap: 6.25rem;
    width: max-content;
    animation: nl-scroll 46s linear infinite;
}

.nl-marquee.is-reverse .nl-marquee-track { animation-direction: reverse; }
.nl-marquee:hover .nl-marquee-track { animation-play-state: paused; }

@keyframes nl-scroll {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(calc(var(--nl-shift, 50%) * -1), 0, 0); }
}

.nl-logo {
    flex: 0 0 auto;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .72;
    transition: opacity .4s ease;
}

.nl-logo:hover { opacity: 1; }
.nl-logo img { max-height: 100%; width: auto; object-fit: contain; }
.nl-logo.is-tall img { max-height: 3.75rem; }

/* ---------- 4. WHY NOW / NORSOK ---------- */

.nl-norsok { padding-top: 3.125rem; padding-bottom: 9.375rem; position: relative; }

.nl-norsok-grid {
    display: flex;
    gap: 6.25rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.nl-norsok-grid .section-headline { flex: 1 1 52%; max-width: 42rem; text-wrap: balance; }
.nl-norsok-body { flex: 1 1 48%; max-width: 38rem; padding-top: .5rem; }
.nl-norsok-body p + p { margin-top: 1.875rem; }

/* interval graphic */
.nl-interval {
    position: relative;
    border-radius: 3.125rem;
    background: #00000099;
    border: 1px solid var(--nl-hairline);
    padding: 4.37rem 3.75rem;
    overflow: hidden;
}

.nl-interval::before {
    content: "";
    position: absolute;
    right: -12%;
    top: -60%;
    width: 55%;
    height: 220%;
    background: radial-gradient(closest-side, rgba(0, 140, 255, .18), transparent 70%);
    pointer-events: none;
}

/* the 14 -> 21 day progression line */
.nl-prog {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nl-prog-end {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nl-prog-num {
    position: relative;
    z-index: 1;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.02em;
}

.nl-prog-unit {
    position: relative;
    z-index: 1;
    font-weight: 600;
    font-size: .6875rem;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: .75rem;
}

/* left — the interval being left behind */
.nl-prog-end.is-from { width: 7.5rem; height: 6.5rem; }
.nl-prog-end.is-from .nl-prog-num { font-size: 3rem; color: rgba(255, 255, 255, .4); }
.nl-prog-end.is-from .nl-prog-unit { color: rgba(255, 255, 255, .32); }

/* right — the destination, carries the emphasis */
.nl-prog-end.is-to { width: 11.5rem; height: 8.5rem; }

.nl-prog-end.is-to .nl-prog-num {
    font-size: 4.375rem;
    background: linear-gradient(90deg, #008CFF 0%, #73FBFD 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nl-prog-end.is-to .nl-prog-unit { color: #4C9EFF; }

.nl-prog-glow {
    position: absolute;
    left: -20%;
    top: -25%;
    width: 140%;
    height: 150%;
    background: radial-gradient(closest-side, rgba(0, 140, 255, .22), transparent 72%);
    pointer-events: none;
}

/* corner brackets frame the 21-day node */
.nl-prog-end.is-to::before,
.nl-prog-end.is-to::after,
.nl-prog-corner::before,
.nl-prog-corner::after {
    content: "";
    position: absolute;
    width: .9rem;
    height: .9rem;
    z-index: 2;
}

.nl-prog-end.is-to::before,
.nl-prog-end.is-to::after { top: 0; border-top: 1px solid var(--site-white-color); }
.nl-prog-end.is-to::before { left: 0; border-left: 1px solid var(--site-white-color); border-top-left-radius: 9px; }
.nl-prog-end.is-to::after { right: 0; border-right: 1px solid var(--site-white-color); border-top-right-radius: 9px; }

.nl-prog-corner { position: absolute; inset: 0; }
.nl-prog-corner::before,
.nl-prog-corner::after { bottom: 0; border-bottom: 1px solid var(--site-white-color); }
.nl-prog-corner::before { left: 0; border-left: 1px solid var(--site-white-color); border-bottom-left-radius: 9px; }
.nl-prog-corner::after { right: 0; border-right: 1px solid var(--site-white-color); border-bottom-right-radius: 9px; }

/* the rail between them */
.nl-prog-line {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .875rem;
}

.nl-prog-rail {
    flex: 1 1 auto;
    position: relative;
    height: 1px;
    background: var(--nl-rail);
}

.nl-prog-rail i {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, #0544E4 0%, #008CFF 55%, #73FBFD 100%);
    box-shadow: 0 0 14px rgba(0, 140, 255, .45);
}

.nl-prog-tip { flex: 0 0 auto; display: block; }

/* the two market callouts */
.nl-prog-marks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 3.75rem;
    padding-top: 3.125rem;
    border-top: 1px solid var(--nl-hairline);
}

.nl-mark { padding-right: 3.75rem; }
.nl-mark + .nl-mark { padding-right: 0; padding-left: 3.75rem; border-left: 1px solid var(--nl-hairline); }

.nl-mark-head {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}

.nl-mark-region {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin: 0;
}

.nl-mark-dot {
    position: relative;
    width: .4375rem;
    height: .4375rem;
    border-radius: 50%;
    flex: 0 0 .4375rem;
}

/* proven — settled, a steady halo */
.is-proven .nl-mark-dot { background: #4C9EFF; box-shadow: 0 0 0 4px rgba(76, 158, 255, .14); }

/* ready — a slow ping, the market that is next */
.is-ready .nl-mark-dot { background: #73FBFD; }

.is-ready .nl-mark-dot::after {
    content: "";
    position: absolute;
    inset: -.25rem;
    border-radius: 50%;
    border: 1px solid rgba(115, 251, 253, .55);
    animation: nl-ping 2.8s ease-out infinite;
}

@keyframes nl-ping {
    0% { transform: scale(.55); opacity: .9; }
    70%, 100% { transform: scale(1.7); opacity: 0; }
}

.nl-mark-state {
    position: relative;
    padding-left: 1.125rem;
    font-weight: 600;
    font-size: .6875rem;
    line-height: 1;
    letter-spacing: .18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.nl-mark-state::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: .5rem;
    height: 1px;
    background: rgba(255, 255, 255, .25);
}

.is-proven .nl-mark-state { color: #4C9EFF; }
.is-ready .nl-mark-state { color: #73FBFD; }

.nl-mark-note {
    font-weight: 300;
    font-size: .9375rem;
    line-height: 1.6;
    color: var(--site-ash-color);
    margin-top: 1rem;
    padding-left: 1.1875rem;
}

.nl-prog-benefit {
    margin-top: 3.125rem;
    text-align: center;
    text-wrap: balance;
    font-weight: 600;
    font-size: .75rem;
    line-height: 1.6;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

/* ---------- 5. DIGITALIZE — RTM + DPT ---------- */

.nl-platform { padding-top: 3.125rem; padding-bottom: 9.375rem; }

.nl-platform-head { margin-bottom: 3.75rem; max-width: 54rem; }

.nl-platform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 2.5rem;
}

.nl-product {
    position: relative;
    border-radius: 3.125rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    isolation: isolate;
    transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}

.nl-product:nth-child(1) { background: rgba(0, 0, 0, .8); }
.nl-product:nth-child(3) {
    background:
        linear-gradient(114.6deg, rgba(0, 7, 18, .88) -0.01%, rgba(0, 7, 18, .12) 99.99%),
        var(--site-liner-dark);
}

.nl-product:hover { transform: translateY(-8px); }

.nl-product-media {
    position: relative;
    height: 20rem;
    overflow: hidden;
}

.nl-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22, .61, .36, 1);
}

.nl-product:hover .nl-product-media img { transform: scale(1.06); }

.nl-product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 10, 33, .1) 0%, rgba(0, 10, 33, .55) 60%, rgba(0, 10, 33, .95) 100%);
}

.nl-product-badge {
    position: absolute;
    left: 2.5rem;
    top: 2.5rem;
    z-index: 2;
}

.nl-product-body { padding: 2.5rem 3.125rem 3.125rem; flex: 1 1 auto; display: flex; flex-direction: column; }

.nl-product-body h3 {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.05;
}

.nl-product-body .nl-product-sub {
    font-weight: 300;
    font-size: 1.375rem;
    line-height: 1.3;
    color: #4C9EFF;
    margin-top: .625rem;
}

.nl-product:nth-child(3) .nl-product-sub { color: #9CD0FF; }

.nl-product-list { margin-top: 2.5rem; border-top: 1px solid var(--nl-hairline); }

.nl-product-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--nl-hairline);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    font-weight: 400;
    font-size: 1.005625rem;
    line-height: 1.6;
    color: var(--site-ash-color);
}

.nl-product-list li .nl-bullet {
    flex: 0 0 auto;
    margin-top: .45rem;
}

/* ---------- 6. CLOSING ---------- */

.nl-closing { padding-top: 3.125rem; padding-bottom: 9.375rem; }

.nl-closing-inner {
    background:
        linear-gradient(114.6deg, rgba(0, 7, 18, .82) -0.01%, rgba(0, 7, 18, .05) 99.99%),
        var(--site-liner-dark);
    border-radius: 3.125rem;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    position: relative;
}

.nl-closing-copy {
    flex: 1 1 55%;
    padding: 5.6rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nl-closing-copy h2 {
    font-weight: 400;
    font-size: 3.5rem;
    line-height: 1.05;
    margin-bottom: 1.875rem;
    text-wrap: balance;
}

.nl-closing-copy p {
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #C6CEDC;
    max-width: 34rem;
    margin-bottom: 3.125rem;
}

.nl-closing-media { flex: 1 1 45%; position: relative; min-height: 30rem; }

.nl-closing-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nl-closing-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #061435 0%, rgba(6, 20, 53, .35) 45%, rgba(6, 20, 53, .1) 100%);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1440px) {
    .nl-hero-grid { gap: 3.75rem; }
    .nl-form-card { flex: 0 0 25rem; max-width: 25rem; padding: 2.25rem; }
    .nl-closing-copy { padding: 4.37rem 3.75rem; }
    .nl-closing-copy h2 { font-size: 3rem; }
    .nl-interval { padding: 3.75rem 2.5rem; }
}

@media (max-width: 1280px) {
    .nl-hero { padding-top: 10rem; }
    .nl-norsok-grid { gap: 3.75rem; }
    .nl-product-body { padding: 2rem 2.25rem 2.5rem; }
    .nl-product-body h3 { font-size: 2rem; }
    .nl-trusted-head h2 { font-size: 2.25rem; }
}

@media (max-width: 1100px) {
    .nl-stat-hours { grid-column: span 12; grid-row: auto; }
    .nl-stat-tests, .nl-stat-fail { grid-column: span 6; }
    .nl-stat-rigs { grid-column: span 12; }
    .nl-stat-dnv { grid-column: span 7; }
    .nl-stat-cta { grid-column: span 5; }
}

@media (max-width: 1024px) {
    :root { --nl-ribbon-h: 2.75rem; }

    .nl-hero {
        min-height: auto;
        padding-top: 9rem;
        padding-bottom: 4rem;
        align-items: flex-start;
    }

    .nl-hero-grid { flex-direction: column; align-items: stretch; gap: 3.125rem; }
    .nl-hero-copy { max-width: 100%; }
    .nl-hero-copy .banner-sub-headline { max-width: 100%; }
    .nl-form-card { flex: 1 1 auto; max-width: 100%; }
    .nl-scroll-cue { display: none; }

    .nl-case, .nl-trusted { padding-top: 6rem; padding-bottom: 6rem; }
    .nl-numbers { padding-top: 6rem; padding-bottom: 6rem; }
    .nl-norsok, .nl-platform, .nl-closing { padding-bottom: 6rem; }

    .nl-case-head, .nl-numbers-head, .nl-trusted-head { flex-direction: column; align-items: flex-start; gap: 1.875rem; }
    .nl-trusted-head p { border-left: 0; padding-left: 0; max-width: 100%; }

    .nl-norsok-grid { flex-direction: column; gap: 2.5rem; }
    .nl-norsok-grid .section-headline, .nl-norsok-body { max-width: 100%; }

    .nl-platform-grid { grid-template-columns: 1fr; }

    .nl-mark { padding-right: 2.5rem; }
    .nl-mark + .nl-mark { padding-left: 2.5rem; }

    .nl-closing-inner { flex-direction: column-reverse; }
    .nl-closing-media { min-height: 20rem; }
    .nl-closing-media::after { background: linear-gradient(180deg, rgba(6, 20, 53, .1) 0%, #061435 100%); }
    .nl-closing-copy h2 { font-size: 2.5rem; }

    .nl-video::after { background: linear-gradient(180deg, rgba(0, 10, 33, .3) 0%, rgba(0, 10, 33, 0) 60%); }
}

@media (max-width: 768px) {
    :root { --nl-ribbon-h: auto; }

    .launch-ribbon { height: auto; padding: .7rem 0; }
    .launch-ribbon p { font-size: .625rem; line-height: 1.5; letter-spacing: .1em; white-space: normal; text-align: center; gap: .5rem; }
    .launch-ribbon .nl-ribbon-dot { display: none; }
    body.nl-page header.site-header { top: 2.6rem; }

    .nl-hero { padding-top: 7.5rem; }
    .nl-hero-copy h1 { margin-top: 1.25rem; }
    .nl-hero-copy .banner-sub-headline { font-size: 1.125rem; margin-top: 1.25rem; }
    .nl-route { margin-top: 2.5rem; }
    .nl-form-card { padding: 1.5rem; border-radius: 1.5rem; }
    .nl-form-card .nl-form-title { font-size: 1rem; letter-spacing: .1em; margin-bottom: 1.875rem; }
    .nl-form .form-fields { margin-bottom: 1.875rem; }

    .nl-video { border-radius: 1.5rem; aspect-ratio: 16 / 10; }
    .nl-play { width: 4.25rem; height: 4.25rem; }
    .nl-play svg { width: 16px; height: 20px; }

    .nl-numbers { border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem; }
    .nl-stats-grid { gap: 1rem; }
    .nl-stat { padding: 1.5rem; border-radius: 1.5rem; gap: 1.875rem; }
    .nl-stat-hours, .nl-stat-tests, .nl-stat-fail, .nl-stat-rigs, .nl-stat-dnv, .nl-stat-cta { grid-column: span 12; }
    .nl-stat-media { min-height: 12rem; }
    .nl-stat-dnv h5 { font-size: 1.5rem; }

    .nl-marquee-track { gap: 3.25rem; }
    .nl-marquee + .nl-marquee { margin-top: 2rem; }
    .nl-logo { height: 2.25rem; }
    .nl-logo.is-tall img { max-height: 2.75rem; }
    .nl-trusted-head h2 { font-size: 1.75rem; }
    .nl-trusted-head p { font-size: 1rem; }

    .nl-interval { padding: 2rem 1.25rem; border-radius: 1.5rem; }
    .nl-prog { gap: 1rem; }
    .nl-prog-line { gap: .625rem; }
    .nl-prog-end.is-from { width: 4.25rem; height: 4.75rem; }
    .nl-prog-end.is-from .nl-prog-num { font-size: 1.875rem; }
    .nl-prog-end.is-to { width: 6.75rem; height: 6.25rem; }
    .nl-prog-end.is-to .nl-prog-num { font-size: 2.625rem; }
    .nl-prog-unit { font-size: .5625rem; letter-spacing: .12em; margin-top: .5rem; }
    .nl-prog-marks { grid-template-columns: 1fr; margin-top: 2.5rem; padding-top: 2rem; }
    .nl-mark { padding-right: 0; }
    .nl-mark + .nl-mark { padding-left: 0; border-left: 0; border-top: 1px solid var(--nl-hairline); margin-top: 1.875rem; padding-top: 1.875rem; }
    .nl-mark-head { flex-wrap: wrap; gap: .75rem; }
    .nl-mark-region { font-size: .8125rem; letter-spacing: .12em; }
    .nl-mark-note { font-size: .875rem; margin-top: .75rem; padding-left: 0; }
    .nl-prog-benefit { margin-top: 2rem; font-size: .5625rem; letter-spacing: .1em; }

    .nl-product { border-radius: 1.5rem; }
    .nl-product-media { height: 13rem; }
    .nl-product-badge { left: 1.5rem; top: 1.5rem; }
    .nl-product-body { padding: 1.5rem; }
    .nl-product-body h3 { font-size: 1.75rem; }
    .nl-product-body .nl-product-sub { font-size: 1.125rem; }
    .nl-product-list { margin-top: 1.5rem; }
    .nl-product-list li { font-size: .9375rem; padding: 1.125rem 0; gap: .875rem; }

    .nl-closing-inner { border-radius: 1.5rem; }
    .nl-closing-copy { padding: 2rem 1.5rem 2.5rem; }
    .nl-closing-copy h2 { font-size: 1.875rem; }
    .nl-closing-copy p { font-size: 1rem; margin-bottom: 2rem; }

    .nl-kicker { font-size: .6875rem; margin-bottom: 1rem; }
    .nl-lede { font-size: 1rem; line-height: 1.6; }
    .nl-eyebrow { font-size: .625rem; padding: .5rem .875rem; }
}

/* short laptops: keep the hero close to one screen */
@media (min-width: 1025px) and (max-height: 900px) {
    .nl-hero { padding-top: 9.5rem; padding-bottom: 4rem; }
    .nl-hero-copy .banner-sub-headline { margin-top: 1.25rem; font-size: 1.375rem; }
    .nl-route { margin-top: 2.25rem; }
    .nl-form-card { padding: 2rem 2.25rem; }
    .nl-form-card .nl-form-title { margin-bottom: 1.875rem; font-size: 1rem; }
    .nl-form .form-fields { margin-bottom: 1.875rem; }
}

@media (prefers-reduced-motion: reduce) {
    .nl-hero-media img,
    .launch-ribbon::after,
    .nl-route .nl-arc,
    .nl-route .nl-spark,
    .nl-play::before,
    .nl-scroll-cue span.nl-cue-line::after,
    .nl-marquee-track,
    .is-ready .nl-mark-dot::after { animation: none !important; }
    .nl-route .nl-arc { stroke-dashoffset: 0; }
}
