@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --pv-green: #008000;
    --pv-green-dark: #006400;
    --pv-green-soft: #edf8ee;
    --pv-dark: #09111d;
    --pv-text: #465568;
    --pv-muted: #748195;
    --pv-border: #e3e8ee;
    --pv-soft: #f6f8fa;
    --pv-white: #ffffff;
    --pv-width: 1220px;
    --pv-font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pv-page {
    width: 100%;
    overflow-x: hidden;
    background: var(--pv-white);
    color: var(--pv-text);
    font-family: var(--pv-font);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.pv-page *,
.pv-page *::before,
.pv-page *::after {
    box-sizing: border-box;
}

.pv-page img {
    max-width: 100%;
}

.pv-container {
    width: 100%;
    max-width: var(--pv-width);
    margin: 0 auto;
    padding: 0 24px;
}

.pv-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--pv-green);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pv-btn {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: .87rem;
    font-weight: 650;
    text-align: center;
    text-decoration: none;
    transition: .25s ease;
}

.pv-btn-primary {
    background: var(--pv-green);
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(0, 128, 0, .18);
}

.pv-btn-primary:hover {
    background: var(--pv-green-dark);
    transform: translateY(-2px);
}

.pv-btn-secondary {
    border-color: rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .08);
    color: #fff !important;
}

.pv-btn-secondary:hover {
    background: rgba(255, 255, 255, .14);
}

.pv-btn-outline {
    border-color: var(--pv-border);
    background: #fff;
    color: var(--pv-dark) !important;
}

.pv-btn-outline:hover {
    border-color: rgba(0, 128, 0, .35);
    transform: translateY(-2px);
}

.pv-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pv-actions-center {
    justify-content: center;
}

/* HERO */
.pv-hero {
    position: relative;
    min-height: 720px;
    height: 86vh;
    max-height: 920px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #05090e;
}

.pv-hero-media,
.pv-hero-overlay {
    position: absolute;
    inset: 0;
}

.pv-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pv-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(4, 9, 15, .96) 0%,
            rgba(4, 9, 15, .8) 48%,
            rgba(4, 9, 15, .28) 100%
        );
}

.pv-hero-inner {
    position: relative;
    z-index: 2;
}

.pv-hero-copy {
    max-width: 830px;
}

.pv-kicker {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .82);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.pv-hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 5.7vw, 5.45rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.063em;
}

.pv-hero-copy > p {
    max-width: 660px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 1.03rem;
}

.pv-hero-meta {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.pv-hero-meta span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: rgba(255, 255, 255, .6);
    font-size: .68rem;
    font-weight: 600;
}

/* INTRO */
.pv-intro {
    padding: 118px 0 88px;
}

.pv-intro-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: start;
    gap: 95px;
}

.pv-intro h2,
.pv-section-head h2,
.pv-calls-copy h2,
.pv-lumen-copy h2,
.pv-results-head h2,
.pv-cta-inner h2 {
    margin: 0;
    color: var(--pv-dark);
    font-size: clamp(2.2rem, 4.3vw, 3.55rem);
    line-height: 1.07;
    font-weight: 650;
    letter-spacing: -.052em;
}

.pv-intro-grid > div:last-child {
    padding-top: 38px;
}

.pv-intro p {
    margin: 0 0 18px;
    color: var(--pv-muted);
}

/* EDITORIAL BENEFITS */
.pv-benefits {
    padding-bottom: 110px;
}

.pv-editorial-list {
    border-top: 1px solid var(--pv-border);
}

.pv-editorial-row {
    padding: 32px 0;
    border-bottom: 1px solid var(--pv-border);
    display: grid;
    grid-template-columns: 80px 260px 1fr;
    align-items: start;
    gap: 28px;
}

.pv-editorial-row > span {
    color: var(--pv-green);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
}

.pv-editorial-row h3 {
    margin: 0;
    color: var(--pv-dark);
    font-size: 1.06rem;
    font-weight: 650;
}

.pv-editorial-row p {
    max-width: 620px;
    margin: 0;
    color: var(--pv-muted);
    font-size: .84rem;
}

/* SECTION HEAD */
.pv-section-head {
    max-width: 760px;
    margin-bottom: 58px;
}

.pv-section-head p {
    max-width: 650px;
    margin: 20px 0 0;
    color: var(--pv-muted);
}

/* WORKFLOW */
.pv-workflow {
    padding: 112px 0;
    background: var(--pv-soft);
}

.pv-workflow-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    align-items: center;
    gap: 90px;
}

.pv-device-scene {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--pv-border);
    border-radius: 26px;
    background:
        radial-gradient(circle at 36% 50%, rgba(0, 128, 0, .1), transparent 28%),
        #fff;
}

.pv-table-device {
    position: absolute;
    top: 50%;
    left: 22%;
    width: 190px;
    height: 190px;
    border: 1px solid var(--pv-border);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 24px 55px rgba(15, 23, 42, .11);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.pv-device-brand {
    margin-bottom: 14px;
    color: var(--pv-muted);
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pv-table-device button {
    width: 78px;
    height: 78px;
    border: 8px solid var(--pv-green-soft);
    border-radius: 50%;
    background: var(--pv-green);
    color: #fff;
    font-family: inherit;
    font-size: .72rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(0, 128, 0, .24);
    pointer-events: none;
}

.pv-table-device > span {
    margin-top: 12px;
    color: var(--pv-dark);
    font-size: .68rem;
    font-weight: 700;
}

.pv-signal {
    position: absolute;
    top: 50%;
    left: 22%;
    border: 1px solid rgba(0, 128, 0, .18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.signal-one {
    width: 260px;
    height: 260px;
}

.signal-two {
    width: 350px;
    height: 350px;
}

.signal-three {
    width: 440px;
    height: 440px;
}

.pv-receiver {
    position: absolute;
    top: 50%;
    right: 9%;
    width: 230px;
    padding: 25px;
    border-radius: 17px;
    background: var(--pv-dark);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .2);
    transform: translateY(-50%);
    z-index: 4;
}

.pv-receiver small,
.pv-receiver strong,
.pv-receiver span {
    display: block;
}

.pv-receiver small {
    color: rgba(255, 255, 255, .5);
    font-size: .65rem;
}

.pv-receiver strong {
    margin-top: 15px;
    color: #fff;
    font-size: 1.45rem;
}

.pv-receiver span {
    margin-top: 5px;
    color: #55ca5e;
    font-size: .72rem;
}

.pv-workflow-list {
    border-top: 1px solid var(--pv-border);
}

.pv-workflow-list article {
    padding: 23px 0;
    border-bottom: 1px solid var(--pv-border);
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
}

.pv-workflow-list article > span {
    color: var(--pv-green);
    font-size: .66rem;
    font-weight: 700;
}

.pv-workflow-list h3 {
    margin: 0;
    color: var(--pv-dark);
    font-size: .95rem;
}

.pv-workflow-list p {
    margin: 6px 0 0;
    color: var(--pv-muted);
    font-size: .78rem;
}

/* CALL TYPES */
.pv-calls {
    padding: 112px 0;
}

.pv-calls-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.pv-calls-copy p {
    max-width: 560px;
    margin: 22px 0 0;
    color: var(--pv-muted);
}

.pv-call-list {
    border-top: 1px solid var(--pv-border);
}

.pv-call-list div {
    padding: 21px 0;
    border-bottom: 1px solid var(--pv-border);
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
}

.pv-call-list span {
    color: var(--pv-green);
    font-size: .66rem;
    font-weight: 700;
}

.pv-call-list strong {
    color: var(--pv-dark);
    font-size: .92rem;
}

/* LUMEN */
.pv-lumen {
    padding: 112px 0;
    background: var(--pv-dark);
}

.pv-lumen-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.pv-lumen-copy h2 {
    color: #fff;
}

.pv-lumen-copy > p {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .62);
}

.pv-lumen-copy ul {
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    list-style: none;
}

.pv-lumen-copy li {
    position: relative;
    padding-left: 17px;
    color: rgba(255, 255, 255, .72);
    font-size: .8rem;
}

.pv-lumen-copy li::before {
    content: "";
    position: absolute;
    top: .7em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #50ca5a;
}

.pv-lumen-visual {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
}

.pv-lumen-screen {
    padding: 27px;
    border-radius: 17px;
    background: #fff;
}

.pv-lumen-top {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pv-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.pv-lumen-top span {
    color: var(--pv-dark);
    font-size: .95rem;
    font-weight: 700;
}

.pv-lumen-top small {
    position: relative;
    padding-left: 13px;
    color: var(--pv-green);
    font-size: .64rem;
    font-weight: 700;
}

.pv-lumen-top small::before {
    content: "";
    position: absolute;
    top: .55em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pv-green);
}

.pv-lumen-alert {
    padding: 20px 0;
    border-bottom: 1px solid var(--pv-border);
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 16px;
}

.pv-lumen-alert > span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pv-green-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pv-green-dark);
    font-size: .8rem;
    font-weight: 700;
}

.pv-lumen-alert strong,
.pv-lumen-alert small {
    display: block;
}

.pv-lumen-alert strong {
    color: var(--pv-dark);
    font-size: .83rem;
}

.pv-lumen-alert small {
    margin-top: 3px;
    color: var(--pv-muted);
    font-size: .66rem;
}

.pv-lumen-alert em {
    color: var(--pv-muted);
    font-size: .61rem;
    font-style: normal;
}

.pv-lumen-footer {
    padding-top: 19px;
    color: var(--pv-muted);
    font-size: .65rem;
    text-align: right;
}

.pv-lumen-visual > small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .38);
    font-size: .59rem;
    text-align: right;
}

/* RESULTS */
.pv-results {
    padding: 112px 0;
}

.pv-results-head {
    max-width: 760px;
    margin-bottom: 55px;
}

.pv-results-list {
    border-top: 1px solid var(--pv-border);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pv-results-list div {
    min-height: 215px;
    padding: 30px 26px;
    border-right: 1px solid var(--pv-border);
}

.pv-results-list div:last-child {
    border-right: 0;
}

.pv-results-list span {
    display: block;
    margin-bottom: 48px;
    color: var(--pv-green);
    font-size: .67rem;
    font-weight: 700;
}

.pv-results-list p {
    margin: 0;
    color: var(--pv-dark);
    font-size: .92rem;
    font-weight: 600;
}

/* PROOF */
.pv-proof {
    padding: 80px 0;
    background: var(--pv-soft);
}

.pv-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.pv-proof-number strong,
.pv-proof-number span {
    display: block;
}

.pv-proof-number strong {
    color: var(--pv-dark);
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    line-height: 1;
    font-weight: 600;
    letter-spacing: -.07em;
}

.pv-proof-number span {
    margin-top: 10px;
    color: var(--pv-green);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pv-proof-grid > p {
    margin: 0;
    color: var(--pv-muted);
}

/* USE CASES */
.pv-use-cases {
    padding: 112px 0;
}

.pv-use-case-list {
    border-top: 1px solid var(--pv-border);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.pv-use-case-list article {
    min-height: 205px;
    padding: 31px 27px;
    border-right: 1px solid var(--pv-border);
    border-bottom: 1px solid var(--pv-border);
}

.pv-use-case-list article:nth-child(3n) {
    border-right: 0;
}

.pv-use-case-list h3 {
    margin: 0;
    color: var(--pv-dark);
    font-size: .98rem;
}

.pv-use-case-list p {
    margin: 10px 0 0;
    color: var(--pv-muted);
    font-size: .78rem;
}

/* INSTALLATION */
.pv-installation {
    padding: 112px 0;
    background: var(--pv-dark);
}

.pv-section-head-light h2 {
    color: #fff;
}

.pv-section-head-light p {
    color: rgba(255, 255, 255, .6);
}

.pv-installation-list {
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.pv-installation-list article {
    min-height: 245px;
    padding: 32px 27px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.pv-installation-list article:last-child {
    border-right: 0;
}

.pv-installation-list span {
    display: block;
    margin-bottom: 48px;
    color: #50ca5a;
    font-size: .67rem;
    font-weight: 700;
}

.pv-installation-list h3 {
    margin: 0;
    color: #fff;
    font-size: .98rem;
}

.pv-installation-list p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: .77rem;
}

/* CTA */
.pv-cta {
    padding: 110px 0;
}

.pv-cta-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 62px 45px;
    border-top: 1px solid var(--pv-border);
    border-bottom: 1px solid var(--pv-border);
    text-align: center;
}

.pv-cta-inner p {
    max-width: 680px;
    margin: 21px auto 0;
    color: var(--pv-muted);
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .pv-intro-grid,
    .pv-workflow-grid,
    .pv-calls-grid,
    .pv-lumen-grid,
    .pv-proof-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .pv-intro-grid > div:last-child {
        padding-top: 0;
    }

    .pv-editorial-row {
        grid-template-columns: 60px 220px 1fr;
    }

    .pv-results-list,
    .pv-installation-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .pv-results-list div:nth-child(2),
    .pv-installation-list article:nth-child(2) {
        border-right: 0;
    }

    .pv-results-list div:nth-child(-n+2),
    .pv-installation-list article:nth-child(-n+2) {
        border-bottom: 1px solid var(--pv-border);
    }

    .pv-installation-list article:nth-child(-n+2) {
        border-bottom-color: rgba(255, 255, 255, .12);
    }
}

@media (max-width: 720px) {
    .pv-container {
        padding: 0 18px;
    }

    .pv-hero {
        min-height: 630px;
        height: 82vh;
        align-items: flex-end;
    }

    .pv-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(4, 9, 15, .15) 0%,
                rgba(4, 9, 15, .62) 42%,
                rgba(4, 9, 15, .97) 100%
            );
    }

    .pv-hero-inner {
        padding-bottom: 70px;
    }

    .pv-hero h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .pv-intro,
    .pv-workflow,
    .pv-calls,
    .pv-lumen,
    .pv-results,
    .pv-proof,
    .pv-use-cases,
    .pv-installation,
    .pv-cta {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .pv-editorial-row {
        grid-template-columns: 42px 1fr;
        gap: 18px;
    }

    .pv-editorial-row p {
        grid-column: 2;
    }

    .pv-device-scene {
        min-height: 430px;
    }

    .pv-table-device {
        top: 34%;
        left: 50%;
        width: 160px;
        height: 160px;
    }

    .pv-table-device button {
        width: 65px;
        height: 65px;
    }

    .pv-signal {
        top: 34%;
        left: 50%;
    }

    .signal-one {
        width: 220px;
        height: 220px;
    }

    .signal-two {
        width: 290px;
        height: 290px;
    }

    .signal-three {
        width: 355px;
        height: 355px;
    }

    .pv-receiver {
        top: auto;
        right: 20px;
        bottom: 20px;
        left: 20px;
        width: auto;
        transform: none;
    }

    .pv-lumen-copy ul,
    .pv-use-case-list,
    .pv-results-list,
    .pv-installation-list {
        grid-template-columns: 1fr;
    }

    .pv-use-case-list article {
        border-right: 0;
    }

    .pv-results-list div,
    .pv-installation-list article {
        border-right: 0;
        border-bottom: 1px solid var(--pv-border);
    }

    .pv-installation-list article {
        border-bottom-color: rgba(255, 255, 255, .12);
    }

    .pv-results-list div:last-child,
    .pv-installation-list article:last-child {
        border-bottom: 0;
    }

    .pv-cta-inner {
        padding: 50px 20px;
    }
}

@media (max-width: 520px) {
    .pv-actions {
        flex-direction: column;
    }

    .pv-actions .pv-btn {
        width: 100%;
    }

    .pv-hero-meta {
        display: none;
    }

    .pv-call-list div {
        grid-template-columns: 50px 1fr;
    }

    .pv-lumen-screen {
        padding: 20px 16px;
    }

    .pv-lumen-alert {
        grid-template-columns: 45px 1fr;
    }

    .pv-lumen-alert em {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pv-btn {
        transition: none;
    }
}
