﻿        :root {
            --ink: #17131f;
            --primary: #277238;
            --primary2: #9ec0a5;
            --primary-soft: #dfeae1;
            --primary-deep: #153f1f;
            --secondary: #0F7AAF;
            --green: #5f9f39;
            --cream: #fbf6ee;
            --paper: #fffdf9;
            --line: #d8d0dc;
            --muted: #665f6d;
            --lav: #eee8ff;
            --aqua: #dff5fb;
            --lime: #e9f3dc;
            --success-text: #3c6e23;
            --focus-ring: #17131f;
            --space-1: 4px;
            --space-2: 8px;
            --space-3: 12px;
            --space-4: 16px;
            --space-5: 24px;
            --space-6: 32px;
            --space-7: 48px;
            --space-8: 64px;
            --space-9: 80px;
            --radius-sm: 6px;
            --radius-md: 10px;
            --shadow-sm: 0 2px 8px rgba(23, 19, 31, .1);
            --control-height: 46px
        }

        * {
            box-sizing: border-box
        }

        .skip-link {
            position: absolute;
            left: 12px;
            top: -60px;
            z-index: 200;
            background: var(--ink);
            color: #fff;
            padding: 12px 18px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            transition: top .15s ease
        }

        .skip-link:focus {
            top: 12px
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        [tabindex]:focus-visible {
            outline: 3px solid var(--focus-ring);
            outline-offset: 3px;
            border-radius: 4px
        }

        .js .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1)
        }

        .js .reveal.in-view {
            opacity: 1;
            transform: none
        }

        .js .reveal-item {
            opacity: 0;
            transform: translateY(18px);
            transition: opacity .5s ease, transform .5s ease;
            transition-delay: calc(var(--stagger, 0) * 70ms)
        }

        .js .reveal.in-view .reveal-item {
            opacity: 1;
            transform: none
        }

        .reveal-item:nth-child(1) {
            --stagger: 0
        }

        .reveal-item:nth-child(2) {
            --stagger: 1
        }

        .reveal-item:nth-child(3) {
            --stagger: 2
        }

        .reveal-item:nth-child(4) {
            --stagger: 3
        }

        .reveal-item:nth-child(5) {
            --stagger: 4
        }

        .reveal-item:nth-child(6) {
            --stagger: 5
        }

        .reveal-item:nth-child(7) {
            --stagger: 6
        }

        .reveal-item:nth-child(n+8) {
            --stagger: 7
        }

        @media (prefers-reduced-motion: reduce) {

            html {
                scroll-behavior: auto
            }

            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: .01ms !important;
                scroll-behavior: auto !important
            }
        }

        html {
            scroll-behavior: smooth
        }

        body {
            margin: 0;
            font-family: "Segoe UI", Arial, sans-serif;
            color: var(--ink);
            background: var(--cream);
            overflow-x: hidden
        }

        button,
        input {
            font: inherit
        }

        button {
            cursor: pointer
        }

        a {
            text-decoration: none;
            color: inherit
        }

        img {
            display: block;
            max-width: 100%
        }

        .wrap {
            width: min(1260px, calc(100% - 44px));
            margin: auto
        }

        .top {
            position: sticky;
            top: 0;
            z-index: 30;
            background: rgba(251, 246, 238, .95);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line)
        }

        .nav {
            height: 74px;
            display: flex;
            justify-content: space-between;
            align-items: center
        }

        .nav img {
            height: 41px
        }

        .navlinks {
            display: flex;
            align-items: center;
            gap: 28px;
            font-size: 14px;
            font-weight: 700
        }

        .navlinks a:not(:last-child) {
            position: relative;
            padding-bottom: 2px
        }

        .navlinks a:not(:last-child):after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: 0;
            height: 2px;
            background: var(--primary);
            transition: right .2s ease
        }

        .navlinks a:not(:last-child):hover:after {
            right: 0
        }

        .navlinks a:last-child {
            background: var(--primary);
            color: white;
            padding: 13px 18px;
            border-radius: 999px;
            transition: background-color .15s ease
        }

        .navlinks a:last-child:hover {
            background: #1f5b2d
        }

        .menu {
            display: none;
            background: none;
            border: 0;
            font-size: 28px;
            min-width: 44px;
            min-height: 44px;
            border-radius: var(--radius-sm)
        }

        .menu:hover {
            background: rgba(23, 19, 31, .06)
        }

        .drawer {
            display: none
        }

        .kicker {
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .15em;
            color: var(--primary);
            text-transform: uppercase
        }

        .hero {
            padding: 52px 0 76px
        }

        .hero-card {
            background: var(--paper);
            border: 1px solid var(--line);
            padding: 58px 58px 42px;
            position: relative;
            overflow: hidden
        }

        .hero-card:before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: var(--lav);
            right: -120px;
            top: -160px
        }

        .hero-card:after {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: var(--aqua);
            right: 230px;
            bottom: -150px
        }

        .hero-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1.02fr .98fr;
            gap: 56px;
            align-items: center
        }

        .hero h1 {
            font-size: clamp(62px, 7vw, 80px);
            line-height: .88;
            letter-spacing: -.07em;
            margin: 17px 0 26px
        }

        .hero h1 em {
            font-style: normal;
            color: var(--primary)
        }

        .hero p {
            font-size: 18px;
            line-height: 1.62;
            color: var(--muted);
            max-width: 620px
        }

        .hero-actions {
            display: flex;
            gap: 12px;
            margin-top: 28px
        }

        .hero-actions a {
            padding: 14px 18px;
            border: 1px solid var(--ink);
            font-weight: 900;
            border-radius: 999px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            transition: background-color .15s ease, color .15s ease, transform .1s ease
        }

        .hero-actions a:hover {
            background: rgba(23, 19, 31, .06)
        }

        .hero-actions a:active {
            transform: translateY(1px)
        }

        .hero-actions .primary {
            background: var(--ink);
            color: #fff
        }

        .hero-actions .primary:hover {
            background: #322a3c
        }

        .trust-strip {
            margin-top: 42px;
            padding-top: 24px;
            border-top: 1px solid var(--line);
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            font-size: 12px;
            font-weight: 800
        }

        .trust-strip span {
            color: var(--muted)
        }

        .hero-ui {
            background: #19141f;
            color: white;
            border: 1px solid #362b43;
            padding: 16px;
            box-shadow: 18px 18px 0 var(--primary2);
            position: relative
        }

        .hero-ui-head {
            display: flex;
            justify-content: space-between;
            padding: 4px 6px 16px;
            color: #bdb2c9;
            font-size: 10px
        }

        .hero-ui-head b {
            color: #b8ec8d
        }

        .hero-ui-body {
            display: grid;
            grid-template-columns: 1fr 170px;
            gap: 12px;
            background: #f9f7fb;
            color: var(--ink);
            padding: 18px
        }

        .hero-form label {
            font-size: 10px;
            font-weight: 900;
            color: #7c7485
        }

        .hero-field {
            background: white;
            border: 1px solid #ded7e5;
            padding: 13px;
            margin: 6px 0 13px;
            display: flex;
            justify-content: space-between
        }

        .hero-field.ok {
            border-left: 5px solid var(--green)
        }

        .hero-field i {
            font-style: normal;
            color: var(--success-text);
            font-weight: 900
        }

        .hero-rail {
            border-left: 1px solid #ded7e5;
            padding-left: 14px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            font-size: 10px
        }

        .hero-rail b {
            color: var(--primary)
        }

        .paper-tab {
            position: absolute;
            right: 45%;
            top: -26px;
            background: var(--cream);
            border: 1px solid var(--line);
            padding: 11px 14px;
            color: var(--ink);
            font-size: 10px;
            font-weight: 900;
            transform: rotate(-3deg)
        }

        section {
            padding: 90px 0
        }

        .intro {
            display: grid;
            grid-template-columns: 1fr .72fr;
            gap: 54px;
            align-items: end;
            margin-bottom: 46px
        }

        .intro h2,
        .why>.wrap>h2 {
            font-size: clamp(39px, 5vw, 66px);
            line-height: .96;
            letter-spacing: -.05em;
            margin: 10px 0 0
        }

        .intro p {
            color: var(--muted);
            font-size: 17px;
            line-height: 1.65;
            margin: 0
        }

        .builder {
            background: var(--primary);
            color: white
        }

        .builder .kicker {
            color: var(--primary-soft)
        }

        .builder .intro p {
            color: var(--primary-soft)
        }

        .builder-ui {
            display: grid;
            grid-template-columns: 190px 1fr 300px;
            background: #fff;
            color: var(--ink);
            border: 1px solid #6048c9;
            box-shadow: 14px 14px 0 var(--primary-deep)
        }

        .toolrail {
            padding: 22px;
            background: #083A5B;
            color: white
        }

        .toolrail b {
            font-size: 12px;
            letter-spacing: .12em
        }

        .toolrail span {
            display: block;
            width: 100%;
            color: #b8acc8;
            text-align: left;
            padding: 12px;
            margin-top: 5px
        }

        .toolrail .active {
            background: #022841;
            color: #fff
        }

        .canvas {
            background: #f6f2f8;
            padding: 24px
        }

        .canvas-head {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px
        }

        .canvas-head span {
            font-size: 10px
        }

        .form-card {
            background: white;
            border: 1px solid #ded6e4;
            padding: 24px;
            max-width: 580px;
            margin: auto
        }

        .form-card label {
            font-size: 10px;
            font-weight: 900;
            color: #77707e
        }

        .field {
            border: 1px solid #ddd6e2;
            padding: 13px;
            display: flex;
            justify-content: space-between;
            margin: 6px 0 14px
        }

        .field.selected {
            border: 2px solid var(--primary)
        }

        .field i {
            font-style: normal;
            background: var(--lav);
            padding: 4px 6px;
            font-size: 9px
        }

        .rules {
            display: flex;
            flex-wrap: wrap;
            gap: 7px
        }

        .rules span {
            font-size: 9px;
            background: #f0ecf4;
            padding: 7px
        }

        .settings {
            padding: 24px
        }

        .settings small {
            display: block;
            color: #7c7485;
            margin: 5px 0 20px
        }

        .setting {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #e4ddea;
            padding: 13px 0;
            font-size: 12px
        }

        .setting em {
            font-style: normal;
            color: var(--primary);
            font-weight: 800
        }

        .switch {
            width: 36px;
            height: 20px;
            background: #ddd4e8;
            border-radius: 20px;
            position: relative
        }

        .switch:after {
            content: "";
            position: absolute;
            width: 14px;
            height: 14px;
            background: #fff;
            border-radius: 50%;
            top: 3px;
            left: 3px
        }

        .switch.on {
            background: var(--green)
        }

        .switch.on:after {
            left: 19px
        }

        .live {
            background: var(--lime);
            padding: 12px;
            margin-top: 20px;
            font-size: 11px;
            display: flex;
            justify-content: space-between
        }

        .live b {
            color: #3c6e23
        }

        .deploy {
            background: var(--paper)
        }

        .deploy-grid {
            display: grid;
            grid-template-columns: 1fr 200px 1fr;
            gap: 0;
            border: 1px solid var(--line)
        }

        .deploy-grid article {
            padding: 32px;
            transition: transform .2s ease, box-shadow .2s ease
        }

        .deploy-grid article:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm)
        }

        .deploy-grid article:first-child {
            background: var(--aqua)
        }

        .deploy-grid article:last-child {
            background: var(--lav)
        }

        .deploy-grid article span {
            font-size: 11px;
            font-weight: 900
        }

        .deploy-grid h3 {
            font-size: 34px;
            margin: 10px 0
        }

        .deploy-grid p {
            color: var(--muted);
            line-height: 1.6
        }

        .diagram {
            background: rgba(255, 255, 255, .72);
            padding: 15px;
            font-size: 12px;
            margin-top: 26px
        }

        .diagram b {
            color: var(--primary)
        }

        .core {
            background: #083A5B;
            color: #fff;
            padding: 25px;
            display: flex;
            justify-content: center;
            flex-direction: column
        }

        .core b {
            line-height: 1.8;
            margin-top: 10px
        }

        .engine {
            background: var(--cream)
        }

        .engine-ui {
            border: 1px solid var(--ink);
            background: var(--paper);
            display: grid;
            grid-template-columns: 220px 1fr;
            min-height: 470px;
            box-shadow: 12px 12px 0 var(--primary2)
        }

        .engine-ui nav {
            border-right: 1px solid var(--line);
            padding: 12px
        }

        .engine-ui nav button {
            width: 100%;
            border: 0;
            background: transparent;
            text-align: left;
            padding: 15px;
            font-weight: 900
        }

        .engine-ui nav button small {
            display: block;
            font-weight: 400;
            color: var(--muted);
            margin-top: 4px
        }

        .engine-ui nav .active {
            background: var(--primary);
            color: #fff
        }

        .engine-ui nav .active small {
            color: #e8e0ff
        }

        .engine-pane {
            display: none;
            padding: 28px
        }

        .engine-pane.active {
            display: block
        }

        .screen-title {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--line);
            padding-bottom: 18px
        }

        .screen-title span {
            font-size: 10px;
            color: var(--primary);
            font-weight: 900
        }

        .mini-work {
            display: grid;
            grid-template-columns: 1fr 240px;
            gap: 20px;
            padding-top: 28px
        }

        .mini-work>div,
        .mini-work aside,
        .journey-flow,
        .pdf-sheet {
            border: 1px solid var(--line);
            padding: 22px;
            background: #fff
        }

        .mini-field {
            border: 1px solid var(--line);
            padding: 13px;
            margin-top: 10px
        }

        .mini-field.ok {
            border-left: 6px solid var(--green)
        }

        .mini-work aside {
            background: var(--lav);
            line-height: 2.4
        }

        .mini-work aside b {
            color: var(--primary)
        }

        .journey-flow {
            max-width: 560px;
            background: var(--aqua)
        }

        .journey-flow div {
            padding: 14px;
            border-top: 1px solid rgba(23, 19, 31, .12)
        }

        .pdf-sheet {
            max-width: 440px;
            margin: auto;
            min-height: 310px
        }

        .pdf-sheet i {
            display: block;
            height: 7px;
            background: #e4dde7;
            margin: 14px 0
        }

        .pdf-sheet div {
            height: 56px;
            border: 1px solid #ddd5e1
        }

        .pdf-sheet small {
            display: block;
            margin-top: 40px;
            color: var(--muted)
        }

        .workflow-line {
            display: flex;
            justify-content: center;
            gap: 12px;
            align-items: center;
            margin: 100px auto;
            flex-wrap: wrap
        }

        .workflow-line span {
            padding: 17px 21px;
            border: 1px solid var(--ink);
            background: #fff
        }

        .workflow-line span:nth-child(3) {
            background: var(--lav)
        }

        .ecosystem {
            background: var(--paper)
        }

        .journey-line {
            display: flex;
            gap: 8px;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 32px
        }

        .journey-line span {
            border: 1px solid var(--ink);
            padding: 8px 11px;
            font-size: 11px;
            font-weight: 900;
            background: #fff
        }

        .journey-line span:nth-of-type(3n) {
            background: var(--lav)
        }

        .journey-line b {
            color: var(--primary)
        }

        .product-list {
            border-top: 1px solid var(--ink)
        }

        .product-list article {
            display: grid;
            grid-template-columns: 64px 1fr auto;
            gap: 20px;
            align-items: center;
            padding: 25px 12px;
            margin: 0 -12px;
            border-bottom: 1px solid var(--ink);
            transition: background-color .2s ease, transform .2s ease
        }

        .product-list article:hover {
            background: var(--lav);
            transform: translateX(4px)
        }

        .product-list article:nth-child(even) {
            background: linear-gradient(90deg, transparent 0 65%, rgba(39, 114, 56, .06))
        }

        .product-list i {
            font-style: normal;
            color: var(--primary);
            font-weight: 900
        }

        .product-list h3 {
            font-size: 29px;
            margin: 0 0 6px
        }

        .product-list p {
            margin: 0;
            color: var(--muted)
        }

        .watch {
            border: 1px solid var(--ink);
            background: #fff;
            border-radius: 999px;
            padding: 12px 16px;
            font-weight: 900;
            min-height: 44px;
            transition: background-color .15s ease
        }

        .watch:hover {
            background: var(--lav)
        }

        .watch span {
            color: var(--primary)
        }

        .industries {
            background: var(--lav)
        }

        .industry-switch {
            display: grid;
            grid-template-columns: 240px 1fr;
            border: 1px solid var(--primary2);
            background: #fff
        }

        .industry-switch nav {
            padding: 14px
        }

        .industry-switch nav button {
            display: block;
            width: 100%;
            border: 0;
            background: transparent;
            text-align: left;
            padding: 15px;
            font-weight: 900
        }

        .industry-switch nav .active {
            background: var(--primary);
            color: #fff
        }

        .industry-pane {
            display: none;
            padding: 38px;
            background: var(--paper);
            min-height: 300px
        }

        .industry-pane.active {
            display: block
        }

        .industry-pane h3 {
            font-size: 46px;
            margin: 0 0 12px
        }

        .industry-pane p {
            max-width: 650px;
            color: var(--muted);
            line-height: 1.7
        }

        .industry-pane span {
            display: inline-block;
            margin: 15px 8px 0 0;
            padding: 9px 12px;
            background: var(--aqua);
            font-size: 11px;
            font-weight: 800
        }

        .why {
            background: var(--ink);
            color: #fff
        }

        .why .kicker {
            color: var(--primary-soft)
        }

        .why-list {
            margin-top: 45px;
            border-top: 1px solid #4a4150
        }

        .why-list article {
            display: grid;
            grid-template-columns: 70px .8fr 1.2fr;
            gap: 20px;
            border-bottom: 1px solid #4a4150;
            padding: 25px 0
        }

        .why-list article>b {
            color: var(--primary2)
        }

        .why-list h3 {
            font-size: 25px;
            margin: 0
        }

        .why-list p {
            margin: 0;
            color: #bbb2c2;
            line-height: 1.6
        }

        .metrics {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 18px;
            margin-top: 45px
        }

        .metrics div {
            background: #251d2e;
            padding: 22px;
            min-width: 0
        }

        .metrics div:nth-child(2) {
            background: var(--primary-deep)
        }

        .metrics strong {
            font-size: 44px;
            display: block;
            color: #fff;
            overflow-wrap: break-word
        }

        .metrics span {
            font-size: 12px;
            color: #bfb4c6
        }

        .prototype-note {
            display: block;
            margin-top: 12px;
            color: #8f8596
        }

        .trusted {
            background: var(--cream);
            padding: 58px 0
        }

        .logos {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            margin-top: 24px;
            border: 1px solid var(--line);
            background: #fff
        }

        .logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 16px;
            border-right: 1px solid var(--line);
            transition: background-color .2s ease, transform .2s ease
        }

        .logo:hover {
            background: var(--cream);
            transform: scale(1.04)
        }

        .logo:last-child {
            border-right: 0
        }

        .logo img {
            max-width: 100%;
            max-height: 52px;
            object-fit: contain
        }

        .logo-text {
            font-weight: 900;
            color: #332c38
        }

        .sustain {
            padding: 50px 0;
            background: var(--lime)
        }

        .sustain .wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center
        }

        .sustain h2 {
            font-size: 32px;
            line-height: 1.1;
            letter-spacing: -.02em;
            margin: 8px 0
        }

        .sustain p {
            color: #526247;
            line-height: 1.6
        }

        .video-section {
            background: var(--paper)
        }

        .video-widget {
            display: grid;
            grid-template-columns: .75fr 1.25fr;
            border: 1px solid var(--ink);
            min-height: 390px
        }

        .video-copy {
            padding: 38px
        }

        .video-copy h3 {
            font-size: 39px;
            margin: 10px 0
        }

        .video-copy p {
            color: var(--muted);
            line-height: 1.6
        }

        .video-chips {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 28px
        }

        .video-chips button {
            border: 1px solid var(--ink);
            background: #fff;
            padding: 11px 14px;
            border-radius: 999px;
            min-height: 44px;
            transition: background-color .15s ease
        }

        .video-chips button:hover {
            background: var(--lav)
        }

        .big-play {
            border: 0;
            background: linear-gradient(150deg, var(--primary), #1b7674 60%, var(--secondary));
            color: #fff;
            transition: filter .15s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 16px
        }

        .big-play:hover {
            filter: brightness(1.08)
        }

        .big-play span {
            width: 86px;
            height: 86px;
            border-radius: 50%;
            background: #fff;
            color: var(--primary);
            display: grid;
            place-items: center;
            font-size: 30px;
            padding-left: 6px
        }

        .big-play small {
            letter-spacing: .13em;
            font-weight: 900
        }

        .events {
            background: var(--cream)
        }

        .event-grid {
            display: grid;
            grid-template-columns: 1.35fr .65fr;
            grid-template-rows: 1fr 1fr;
            gap: 14px
        }

        .event-grid figure {
            margin: 0;
            position: relative;
            overflow: hidden;
            max-height: 240px
        }

        .event-grid .event-main {
            grid-row: 1/3;
            max-height: 520px
        }

        .event-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

        .event-grid figcaption {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 18px;
            background: #fff;
            color: var(--ink);
            padding: 15px;
            border: 1px solid var(--ink)
        }

        .event-grid figcaption span {
            color: var(--primary);
            font-size: 10px;
            font-weight: 900
        }

        .event-grid h3 {
            font-size: 28px;
            margin: 6px 0
        }

        .event-grid p {
            margin: 0;
            color: var(--muted)
        }

        .leadership {
            background: var(--paper)
        }

        .leaders {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px
        }

        .leaders article {
            display: grid;
            grid-template-columns: 1fr;
            grid-template-rows: auto 1fr;
            border: 1px solid var(--ink);
            background: #fff;
            transition: transform .2s ease
        }

        .leaders article:hover {
            transform: translateY(-4px)
        }

        .leaders article:nth-child(odd) {
            box-shadow: 10px 10px 0 var(--lav)
        }

        .leaders article:nth-child(even) {
            box-shadow: 10px 10px 0 var(--aqua)
        }

        .leaders img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            object-position: center top
        }

        .leaders article>div {
            padding: 24px 20px 28px
        }

        .leaders span {
            font-size: 11px;
            font-weight: 900;
            color: var(--primary)
        }

        .leaders h3 {
            font-size: 22px;
            margin: 8px 0
        }

        .leaders p {
            color: var(--muted);
            line-height: 1.6
        }

        .contact {
            background: var(--paper)
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-7);
            align-items: stretch
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: var(--space-6)
        }

        .contact-details h3 {
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--primary);
            margin: 0 0 var(--space-2)
        }

        .contact-details address,
        .contact-details p {
            font-style: normal;
            margin: 0;
            color: var(--muted);
            line-height: 1.6
        }

        .contact-map-wrap {
            border: 1px solid var(--ink);
            overflow: hidden;
            min-height: 280px
        }

        .contact-map {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 280px;
            border: 0
        }

        .demo {
            background: var(--primary);
            color: #fff
        }

        .demo .kicker {
            color: var(--primary-soft)
        }

        .demo-grid {
            display: grid;
            grid-template-columns: .85fr 1.15fr;
            gap: 60px
        }

        .demo h2 {
            font-size: clamp(44px, 5vw, 70px);
            line-height: .95;
            margin: 10px 0
        }

        .demo p {
            color: var(--primary-soft);
            line-height: 1.6
        }

        .demo form {
            background: var(--cream);
            color: var(--ink);
            padding: 28px;
            border: 1px solid var(--ink);
            box-shadow: 12px 12px 0 var(--primary-deep)
        }

        .demo label {
            display: block;
            font-size: 11px;
            font-weight: 900;
            margin-bottom: 13px
        }

        .demo input {
            display: block;
            width: 100%;
            height: 46px;
            margin-top: 6px;
            border: 1px solid var(--line);
            padding: 0 12px;
            background: #fff
        }

        .demo input:focus-visible {
            border-color: var(--ink)
        }

        .demo input:user-invalid {
            border-color: #c0392b
        }

        .demo form button {
            height: 50px;
            width: 100%;
            border: 0;
            background: #083A5B;
            color: #fff;
            font-weight: 900;
            transition: background-color .15s ease
        }

        .demo form button:hover:not(:disabled) {
            background: #322a3c
        }

        .demo form button:disabled {
            background: #6f6678;
            cursor: not-allowed
        }

        .demo .field-help {
            margin: -6px 0 13px;
            color: #665f6d;
            font-size: 12px
        }

        .demo .required-note {
            font-size: 12px;
            color: var(--primary-soft);
            margin: 0 0 18px
        }

        .demo .opt {
            font-weight: 400;
            color: var(--muted)
        }

        .demo label.consent {
            display: flex;
            gap: 10px;
            align-items: flex-start;
            font-size: 12px;
            font-weight: 400;
            line-height: 1.5
        }

        .demo label.consent input {
            display: inline-block;
            width: 18px;
            height: 18px;
            margin: 2px 0 0;
            flex: 0 0 auto
        }

        .demo label.consent a {
            text-decoration: underline
        }

        .demo .hp {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden
        }

        .demo input[aria-invalid="true"] {
            border-color: #c0392b;
            outline: 2px solid rgba(192, 57, 43, .25)
        }

        .demo .form-error {
            margin: 0 0 14px;
            color: #c0392b;
            font-size: 12px;
            font-weight: 700
        }

        .demo .success .ref {
            display: block;
            margin-top: 16px;
            font-size: 13px;
            color: var(--muted)
        }

        .demo .success .ref strong {
            display: inline-block;
            margin-top: 6px;
            letter-spacing: .12em;
            font-size: 15px;
            color: var(--ink);
            background: #fff;
            border: 1px solid var(--line);
            padding: 4px 10px
        }

        .map {
            background: var(--cream);
            padding: 28px;
            margin-top: 28px;
            border-radius: 6px;
            border: 1px solid var(--ink);
            min-height: 280px
        }

        .success {
            padding: 45px 8px;
            text-align: center
        }

        .success b {
            display: block;
            font-size: 22px;
            color: var(--success-text)
        }

        .success span {
            display: block;
            margin-top: 10px
        }

        .video-modal {
            position: fixed;
            inset: 0;
            z-index: 100;
            display: grid;
            place-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity .2s ease, visibility 0s linear .2s
        }

        .video-modal.open {
            opacity: 1;
            visibility: visible;
            transition: opacity .2s ease, visibility 0s linear 0s
        }

        .modal-bg {
            position: absolute;
            inset: 0;
            border: 0;
            background: rgba(23, 19, 31, .82)
        }

        .modal-card {
            z-index: 2;
            position: relative;
            width: min(620px, calc(100% - 32px));
            background: var(--cream);
            padding: 22px;
            border: 1px solid var(--ink);
            transform: scale(.96);
            transition: transform .2s ease
        }

        .video-modal.open .modal-card {
            transform: scale(1)
        }

        .close {
            position: absolute;
            right: 12px;
            top: 10px;
            border: 0;
            background: none;
            font-size: 30px
        }

        .modal-screen {
            height: 310px;
            background: var(--primary);
            display: grid;
            place-items: center;
            color: white
        }

        .modal-screen span {
            font-size: 50px
        }

        .modal-card h3 {
            font-size: 28px;
            margin: 20px 0 6px
        }

        .modal-card p {
            color: var(--muted)
        }

        .footer {
            position: relative;
            background: #002136;
            color: #c4bac9;
            padding: var(--space-9) 0 90px
        }

        .footer:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary))
        }

        .footer img {
            height: 33px;
            filter: brightness(0) invert(1)
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: var(--space-7);
            align-items: start
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--space-3)
        }

        .footer-tagline {
            margin: 0;
            color: #9c93a4;
            font-size: 14px;
            line-height: 1.5
        }

        .footer-col h2 {
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .15em;
            color: var(--primary-soft);
            text-transform: uppercase;
            margin: 0
        }

        .footer-label {
            font-size: 11px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #8f8596;
            margin: var(--space-4) 0 0
        }

        .footer-col h2+.footer-label {
            margin-top: var(--space-3)
        }

        .footer-col address,
        .footer-col p {
            font-style: normal;
            margin: var(--space-2) 0 0;
            line-height: 1.6;
            font-size: 14px;
            color: #c4bac9
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--space-3);
            margin-top: var(--space-3)
        }

        .footer-col a {
            color: #c4bac9;
            text-decoration: underline;
            text-decoration-color: transparent;
            transition: color .15s ease, text-decoration-color .15s ease
        }

        .footer-col a:hover {
            color: #fff;
            text-decoration-color: currentColor
        }

        .footer-links a {
            display: inline-flex;
            align-items: center
        }

        .footer-social {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: var(--space-2);
            margin-top: var(--space-3)
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: var(--space-3);
            padding: 4px 6px 4px 4px;
            margin-left: -4px;
            border-radius: var(--radius-sm);
            color: #c4bac9;
            font-size: 14px;
            font-weight: 700;
            text-decoration: none !important;
            transition: color .15s ease, background-color .15s ease, transform .15s ease
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            flex: none
        }

        .social-link:hover {
            color: #fff;
            background: rgba(255, 255, 255, .06);
            transform: translateX(3px)
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: var(--space-3);
            margin-top: var(--space-7);
            padding-top: var(--space-5);
            border-top: 1px solid #362b43;
            font-size: 12px;
            color: #8f8596
        }

        .footer-bottom p {
            margin: 0
        }

        .back-to-top {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: #c4bac9;
            font-size: 12px;
            font-weight: 800;
            transition: color .15s ease, transform .15s ease
        }

        .back-to-top:hover {
            color: #fff;
            transform: translateY(-2px)
        }

        .bottom-nav {
            display: none
        }

        @media(max-width:900px) {
            .navlinks {
                display: none
            }

            .menu {
                display: block
            }

            .hero-grid,
            .intro,
            .demo-grid,
            .contact-grid {
                grid-template-columns: 1fr
            }

            .contact-map-wrap {
                height: 260px
            }

            .hero-ui {
                max-width: 700px;
                margin: auto
            }

            .builder-ui {
                grid-template-columns: 140px 1fr
            }

            .settings {
                grid-column: 1/-1
            }

            .deploy-grid {
                grid-template-columns: 1fr
            }

            .core {
                min-height: 160px
            }

            .engine-ui {
                grid-template-columns: 1fr
            }

            .engine-ui nav {
                display: flex;
                overflow: auto;
                border-right: 0;
                border-bottom: 1px solid var(--line)
            }

            .engine-ui nav button {
                min-width: 150px
            }

            .logos {
                grid-template-columns: repeat(4, 1fr)
            }

            .event-grid {
                grid-template-columns: 1fr 1fr
            }

            .event-grid .event-main {
                grid-column: 1/-1;
                grid-row: auto
            }

            .leaders {
                grid-template-columns: repeat(2, 1fr)
            }

            .metrics {
                grid-template-columns: repeat(2, minmax(0, 1fr))
            }

            .metrics strong {
                font-size: 36px
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                row-gap: var(--space-6)
            }
        }

        @media(max-width:620px) {
            .wrap {
                width: calc(100% - 30px)
            }

            section {
                padding: 65px 0
            }

            .nav {
                height: 62px
            }

            .nav img {
                height: 34px
            }

            .hero {
                padding: 28px 0 48px
            }

            .hero-card {
                padding: 32px 20px 24px
            }

            .hero h1 {
                font-size: 48px
            }

            .hero p {
                font-size: 16px
            }

            .hero-actions {
                display: grid
            }

            .hero-ui {
                margin-top: 18px;
                box-shadow: 8px 8px 0 var(--primary2)
            }

            .hero-ui-body {
                grid-template-columns: 1fr;
                padding: 14px
            }

            .hero-rail {
                border-left: 0;
                border-top: 1px solid #ded7e5;
                padding: 12px 0 0;
                display: grid;
                grid-template-columns: repeat(3, 1fr)
            }

            .paper-tab {
                position: static;
                display: inline-block;
                transform: none;
                margin-bottom: 10px
            }

            .builder-ui {
                grid-template-columns: 1fr;
                box-shadow: 8px 8px 0 var(--primary-deep)
            }

            .toolrail {
                display: flex;
                overflow: auto;
                padding: 12px
            }

            .toolrail b {
                display: none
            }

            .toolrail span {
                white-space: nowrap
            }

            .canvas {
                padding: 14px
            }

            .form-card {
                padding: 16px
            }

            .settings {
                padding: 18px
            }

            .engine-ui nav button {
                min-width: 128px;
                padding: 12px
            }

            .engine-pane {
                padding: 16px
            }

            .mini-work {
                grid-template-columns: 1fr
            }

            .mini-work aside {
                display: none
            }

            .workflow-line {
                margin: 60px auto
            }

            .product-list article {
                grid-template-columns: 38px 1fr auto;
                gap: 10px
            }

            .product-list h3 {
                font-size: 21px
            }

            .product-list p {
                font-size: 13px
            }

            .watch {
                width: 43px;
                height: 43px;
                padding: 0;
                font-size: 0
            }

            .watch span {
                font-size: 14px
            }

            .journey-line {
                overflow: auto;
                flex-wrap: nowrap
            }

            .journey-line span,
            .journey-line b {
                flex: none
            }

            .industry-switch {
                grid-template-columns: 1fr
            }

            .industry-switch nav {
                display: flex;
                overflow: auto
            }

            .industry-switch nav button {
                width: auto;
                white-space: nowrap
            }

            .why-list article {
                grid-template-columns: 42px 1fr
            }

            .why-list p {
                grid-column: 2
            }

            .metrics {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr)
            }

            .metrics strong {
                font-size: 32px
            }

            .logos {
                grid-template-columns: repeat(2, 1fr)
            }

            .logo {
                height: 88px
            }

            .sustain .wrap {
                grid-template-columns: 1fr
            }

            .video-widget {
                grid-template-columns: 1fr
            }

            .big-play {
                min-height: 270px
            }

            .event-grid {
                grid-template-columns: 1fr
            }

            .event-grid .event-main {
                min-height: 380px
            }

            .event-grid figure {
                min-height: 190px
            }

            .leaders {
                grid-template-columns: 1fr
            }

            .leaders img {
                height: 260px
            }

            .bottom-nav {
                display: grid;
                position: fixed;
                z-index: 60;
                left: 0;
                right: 0;
                bottom: 0;
                height: 70px;
                padding-bottom: env(safe-area-inset-bottom);
                grid-template-columns: repeat(4, 1fr);
                background: rgba(23, 19, 31, .97)
            }

            .bottom-nav a {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                color: #cfc5d6;
                font-size: 10px;
                font-weight: 900;
                gap: 4px
            }

            .bottom-nav a:first-child {
                color: #bfaeff
            }

            .footer {
                padding-bottom: 100px
            }

            .footer-grid {
                grid-template-columns: 1fr;
                row-gap: var(--space-6)
            }

            .drawer {
                position: fixed;
                z-index: 29;
                top: 62px;
                left: 0;
                right: 0;
                background: var(--cream);
                padding: 20px;
                border-bottom: 1px solid var(--line);
                display: grid;
                gap: 16px;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                transition: opacity .2s ease, transform .2s ease, visibility 0s linear .2s
            }

            .drawer.open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                transition: opacity .2s ease, transform .2s ease, visibility 0s linear 0s
            }

            .intro {
                gap: 12px
            }

            .intro h2,
            .why>.wrap>h2 {
                font-size: 38px
            }
        }