@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;800&family=JetBrains+Mono:wght@500;700&family=Plus+Jakarta+Sans:wght@700;800&display=swap');

        :root {
            --bg: #f6fafb;
            --surface: #ffffff;
            --surface2: #eef7f8;
            --ink: #102033;
            --muted: #5f6f80;
            --line: #d9e7ea;
            --primary: #0f766e;
            --primary2: #0e8f9d;
            --deep: #0f172a;
            --amber: #f59e0b;
            --teal: #14b8a6;
            --green: #10b981;
            --shadow: 0 18px 45px rgba(15, 23, 42, .11)
        }

        * {
            box-sizing: border-box
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            background: radial-gradient(circle at 18% -4%, rgba(20, 184, 166, .16), transparent 34%), radial-gradient(circle at 88% 10%, rgba(245, 158, 11, .15), transparent 30%), linear-gradient(180deg, #fbfefe 0%, var(--bg) 48%, #f2f7f8 100%);
            color: var(--ink);
            font-family: 'DM Sans', Arial, sans-serif;
            line-height: 1.65
        }

        img,
        svg {
            max-width: 100%;
            height: auto
        }

        a {
            color: inherit
        }

        .display {
            font-family: 'Plus Jakarta Sans', sans-serif
        }

        .mono {
            font-family: 'JetBrains Mono', monospace
        }

        .lpbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 9px 18px;
            background: #0b0b12;
            border-bottom: 2px solid #caa14b;
            color: #f5f2e8
        }

        .lpbar a {
            text-decoration: none
        }

        .lpbrand {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 13px;
            letter-spacing: .6px
        }

        .lpdot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #caa14b;
            box-shadow: 0 0 8px #caa14b
        }

        .lpmeta {
            color: #8b8b96;
            font-size: 11px
        }

        .lpall {
            color: #caa14b;
            border: 1px solid rgba(202, 161, 75, .55);
            padding: 5px 11px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 11px;
            white-space: nowrap
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(255, 255, 255, .9);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line)
        }

        .nav-inner {
            width: min(1220px, 100%);
            margin: auto;
            padding: 11px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none
        }

        .brand-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: linear-gradient(180deg, var(--deep), #1f3a4c);
            position: relative;
            box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .09)
        }

        .brand-mark:before,
        .brand-mark:after {
            content: "";
            position: absolute;
            left: 13px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--teal)
        }

        .brand-mark:before {
            top: 8px
        }

        .brand-mark:after {
            bottom: 8px
        }

        .brand strong {
            font-family: 'Plus Jakarta Sans';
            font-size: 16px
        }

        .links {
            display: flex;
            gap: 4px;
            flex-wrap: wrap
        }

        .links a {
            text-decoration: none;
            color: #516273;
            font-size: 12px;
            font-weight: 800;
            padding: 7px 9px;
            border-radius: 999px
        }

        .links a:hover,
        .links a.active {
            background: rgba(15, 118, 110, .1);
            color: var(--primary)
        }

        .menu {
            display: none;
            border: 1px solid var(--line);
            background: #fff;
            color: var(--ink);
            border-radius: 8px;
            padding: 7px 10px
        }

        .hero {
            position: relative;
            min-height: 88vh;
            display: grid;
            align-items: center;
            overflow: hidden;
            color: #fff;
            background: #0f172a
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(110deg, rgba(15, 23, 42, .95), rgba(15, 23, 42, .78) 52%, rgba(15, 118, 110, .5)), url('bubble-pipe-hero.png');
            background-size: cover;
            background-position: center;
            transform: scale(1.02)
        }

        .hero:after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 36%;
            background: linear-gradient(0deg, var(--bg), transparent)
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            width: min(1220px, 100%);
            margin: auto;
            padding: 98px 20px 138px
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            border: 1px solid rgba(245, 158, 11, .38);
            background: rgba(245, 158, 11, .16);
            border-radius: 999px;
            padding: 8px 13px;
            color: #fde68a;
            font: 800 12px/1 'JetBrains Mono';
            text-transform: uppercase;
            letter-spacing: .14em
        }

        .badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--amber);
            box-shadow: 0 0 18px var(--amber)
        }

        h1 {
            font-family: 'Plus Jakarta Sans';
            font-size: clamp(42px, 7vw, 82px);
            line-height: 1.02;
            letter-spacing: -.052em;
            margin: 24px 0 18px;
            max-width: 850px
        }

        .hero p {
            max-width: 700px;
            color: #e2e8f0;
            font-size: clamp(17px, 2vw, 21px);
            margin: 0
        }

        .actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 30px
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 10px;
            padding: 12px 17px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--primary2));
            color: #fff;
            box-shadow: 0 14px 34px rgba(15, 118, 110, .28)
        }

        .btn.secondary {
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .22);
            box-shadow: none
        }

        .stats {
            position: relative;
            z-index: 3;
            width: min(1140px, 100%);
            margin: -74px auto 0;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px
        }

        .stat {
            background: rgba(255, 255, 255, .94);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 18px;
            text-align: center;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px)
        }

        .stat b {
            display: block;
            font: 800 28px/1 'JetBrains Mono';
            color: var(--primary)
        }

        .stat span {
            display: block;
            margin-top: 7px;
            color: var(--muted);
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .07em
        }

        .section {
            padding: 82px 20px
        }

        .alt {
            background: linear-gradient(180deg, rgba(238, 247, 248, .74), rgba(255, 255, 255, .5));
            border-block: 1px solid var(--line)
        }

        .wrap {
            width: min(1180px, 100%);
            margin: auto
        }

        .section-head {
            text-align: center;
            max-width: 850px;
            margin: 0 auto 36px
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            font: 800 12px/1 'JetBrains Mono';
            letter-spacing: .16em;
            text-transform: uppercase;
            margin-bottom: 12px
        }

        .eyebrow:before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary)
        }

        h2 {
            font-family: 'Plus Jakarta Sans';
            font-size: clamp(30px, 4.6vw, 54px);
            line-height: 1.04;
            letter-spacing: -.04em;
            margin: 0 0 12px
        }

        .section-head p,
        .muted {
            color: var(--muted);
            margin: 0
        }

        .grid {
            display: grid;
            gap: 18px
        }

        .g2 {
            grid-template-columns: repeat(2, minmax(0, 1fr))
        }

        .g3 {
            grid-template-columns: repeat(3, minmax(0, 1fr))
        }

        .g4 {
            grid-template-columns: repeat(4, minmax(0, 1fr))
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 22px;
            box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
            min-width: 0
        }

        .card h3 {
            font-family: 'Plus Jakarta Sans';
            font-size: 21px;
            line-height: 1.18;
            margin: 0 0 8px
        }

        .card p {
            color: var(--muted);
            font-size: 14px;
            margin: 0
        }

        .icon {
            width: 44px;
            height: 44px;
            border-radius: 11px;
            background: rgba(15, 118, 110, .1);
            color: var(--primary);
            display: grid;
            place-items: center;
            font-weight: 900;
            margin-bottom: 14px
        }

        .feature {
            transition: transform .18s ease, box-shadow .18s ease
        }

        .feature:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow)
        }

        .process {
            position: relative;
            background: #0f172a;
            color: #fff;
            border-radius: 18px;
            padding: 26px;
            overflow: hidden
        }

        .process:before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(20, 184, 166, .22), transparent 34%), radial-gradient(circle at 82% 10%, rgba(245, 158, 11, .18), transparent 32%)
        }

        .process-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 12px
        }

        .step {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 12px;
            padding: 14px
        }

        .step b {
            display: inline-grid;
            place-items: center;
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: var(--amber);
            color: #111827;
            font: 800 13px/1 'JetBrains Mono';
            margin-bottom: 9px
        }

        .step span {
            display: block;
            color: #dbeafe;
            font-size: 12px;
            line-height: 1.45
        }

        .diagram {
            background: #0f172a;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, .08);
            padding: 10px;
            box-shadow: var(--shadow)
        }

        .diagram img {
            display: block;
            width: 100%;
            border-radius: 10px
        }

        .metric-card {
            background: linear-gradient(135deg, var(--primary), #155e75);
            color: #fff
        }

        .metric-card .icon {
            background: rgba(255, 255, 255, .16);
            color: #fde68a
        }

        .metric-card b {
            display: block;
            font: 800 28px/1 'JetBrains Mono';
            margin: 6px 0
        }

        .metric-card p,
        .metric-card li {
            color: #e6fffb
        }

        .bar-list {
            display: grid;
            gap: 11px
        }

        .bar-row {
            display: grid;
            grid-template-columns: 160px minmax(0, 1fr) 76px;
            gap: 12px;
            align-items: center
        }

        .bar-label {
            font-weight: 800;
            color: #334155;
            font-size: 13px
        }

        .bar-track {
            height: 16px;
            border-radius: 999px;
            background: #e5eef1;
            border: 1px solid var(--line);
            overflow: hidden
        }

        .bar-fill {
            display: block;
            width: var(--w);
            height: 100%;
            border-radius: inherit;
            background: linear-gradient(90deg, var(--primary), var(--teal));
            box-shadow: 0 0 18px rgba(20, 184, 166, .24)
        }

        .bar-value {
            text-align: right;
            color: var(--primary);
            font: 800 12px/1 'JetBrains Mono'
        }

        .table-wrap {
            overflow-x: auto;
            border: 1px solid var(--line);
            border-radius: 14px;
            background: #fff;
            box-shadow: 0 1px 2px rgba(15, 23, 42, .04)
        }

        table {
            width: 100%;
            min-width: 760px;
            border-collapse: collapse
        }

        th {
            background: var(--primary);
            color: #fff;
            text-align: left;
            padding: 13px;
            font: 800 12px/1.2 'JetBrains Mono';
            text-transform: uppercase;
            letter-spacing: .08em
        }

        td {
            padding: 13px;
            border-bottom: 1px solid var(--line);
            font-size: 13px;
            color: #475569
        }

        td:first-child {
            font-weight: 900;
            color: #162334
        }

        .dark {
            background: linear-gradient(145deg, #0f172a, #164e63);
            color: #fff
        }

        .dark p,
        .dark .muted {
            color: #cbd5e1
        }

        .case {
            overflow: hidden;
            padding: 0
        }

        .case img {
            display: block;
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover
        }

        .case-body {
            padding: 20px
        }

        .tag {
            display: inline-flex;
            background: #fef3c7;
            color: #92400e;
            border-radius: 999px;
            padding: 4px 8px;
            font-size: 11px;
            font-weight: 900;
            margin: 10px 0
        }

        .checklist {
            list-style: none;
            padding: 0;
            margin: 12px 0 0;
            display: grid;
            gap: 8px
        }

        .checklist li {
            font-size: 13px;
            color: #334155;
            display: flex;
            gap: 8px
        }

        .checklist li:before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--primary);
            margin-top: .65em;
            flex: 0 0 auto
        }

        .metric-card .checklist li {
            color: #effefa
        }

        .footer {
            border-top: 1px solid var(--line);
            padding: 30px 20px;
            text-align: center;
            color: #64748b;
            font-size: 12px;
            background: #fff
        }

        .top {
            position: fixed;
            right: 18px;
            bottom: 18px;
            display: none;
            border: 0;
            border-radius: 8px;
            background: var(--primary);
            color: #fff;
            font-weight: 900;
            padding: 10px 13px;
            box-shadow: var(--shadow);
            cursor: pointer
        }

        .reveal {
            opacity: 0;
            transform: translateY(14px);
            transition: opacity .55s ease, transform .55s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: none
        }

        @media(max-width:980px) {
            .links {
                display: none
            }

            .links.open {
                display: flex;
                position: absolute;
                left: 12px;
                right: 12px;
                top: 59px;
                background: #fff;
                border: 1px solid var(--line);
                border-radius: 12px;
                padding: 10px;
                box-shadow: var(--shadow)
            }

            .menu {
                display: block
            }

            .stats,
            .g2,
            .g3,
            .g4 {
                grid-template-columns: 1fr 1fr
            }

            .process-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr))
            }

            .bar-row {
                grid-template-columns: 120px minmax(0, 1fr) 64px
            }

            .hero-inner {
                padding-top: 84px
            }
        }

        @media(max-width:620px) {
            .lpmeta {
                display: none
            }

            .section {
                padding: 58px 16px
            }

            .hero-inner {
                padding: 72px 16px 118px
            }

            .stats {
                grid-template-columns: 1fr 1fr;
                padding: 0 16px;
                margin-top: -60px
            }

            .g2,
            .g3,
            .g4,
            .process-grid {
                grid-template-columns: 1fr
            }

            .card {
                padding: 18px
            }

            .bar-row {
                grid-template-columns: 1fr;
                gap: 5px
            }

            .bar-value {
                text-align: left
            }

            .hero h1 {
                font-size: 40px
            }

            .nav-inner {
                padding-inline: 14px
            }
        }
