:root {
    --ink: #111215;
    --ink-2: #191b1f;
    --paper: #f4f2eb;
    --paper-2: #ebe8df;
    --cream: #ded8ca;
    --lime: #e6ff59;
    --line: rgba(17, 18, 21, .14);
    --muted: #6c706f;
    --white: #fff;
    --radius: 22px;
    --shadow: 0 26px 70px rgba(10, 10, 12, .16);
    --max: 1240px;
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--ink);
    color: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

.noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .025;
    z-index: 999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E")
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: 0 auto
}

.section-pad {
    padding: 118px 0
}

.announcement {
    height: 38px;
    background: var(--lime);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    position: relative;
    z-index: 60
}

.announcement a {
    color: inherit;
    text-underline-offset: 3px
}

.announcement-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ink)
}

.site-header {
    height: 78px;
    position: sticky;
    top: 0;
    z-index: 55;
    background: rgba(17, 18, 21, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: inherit;
    font-weight: 800;
    letter-spacing: -.03em;
    font-size: 20px
}

.brand img {
    height: 50px
}

.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
    margin-right: 34px
}

.desktop-nav a, .footer-grid a {
    color: rgba(244, 242, 235, .72);
    text-decoration: none;
    font-size: 13px;
    transition: .25s
}

.desktop-nav a:hover, .footer-grid a:hover {
    color: var(--lime)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 9px
}

.button {
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font: inherit;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .22s, background .22s, color .22s, border-color .22s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px
}

.button:hover {
    transform: translateY(-2px)
}

.button-dark {
    background: var(--paper);
    color: var(--ink)
}

.button-ghost {
    background: transparent;
    color: var(--paper);
    border: 1px solid rgba(244, 242, 235, .22)
}

.button-lime {
    background: var(--lime);
    color: var(--ink)
}

.button-white {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35)
}

.button-outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(17, 18, 21, .25)
}

.button-text {
    background: transparent;
    color: inherit;
    padding-left: 4px;
    padding-right: 4px
}

.button-lg {
    padding: 15px 22px;
    font-size: 14px
}

.full {
    width: 100%
}

.lang-btn {
    background: none;
    border: 0;
    color: rgba(244, 242, 235, .7);
    font-weight: 700;
    cursor: pointer;
    padding: 10px
}

.lang-menu {
    position: absolute;
    right: 142px;
    top: 67px;
    background: #25272b;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    padding: 7px;
    width: 145px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: .2s
}

.lang-menu.open {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.lang-menu button {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: #eee;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer
}

.lang-menu button:hover {
    background: rgba(255, 255, 255, .08)
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer
}

.menu-btn span {
    position: absolute;
    width: 21px;
    height: 2px;
    background: #fff;
    left: 10px;
    transition: .25s
}

.menu-btn span:first-child {
    top: 15px
}

.menu-btn span:last-child {
    top: 23px
}

.menu-btn.open span:first-child {
    transform: translateY(4px) rotate(45deg)
}

.menu-btn.open span:last-child {
    transform: translateY(-4px) rotate(-45deg)
}

.mobile-menu {
    display: none
}

.hero {
    min-height: calc(100vh - 116px);
    position: relative;
    overflow: hidden;
    padding-top: 106px
}

.hero-grid {
    display: grid;
    grid-template-columns:.9fr 1.25fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(244, 242, 235, .58);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .17em;
    margin-bottom: 24px
}

.eyebrow-line {
    display: inline-block;
    width: 52px;
    height: 1px;
    background: rgba(244, 242, 235, .22)
}

.eyebrow.dark {
    color: #666960
}

.eyebrow.centered {
    justify-content: center
}

.hero h1, .section-head h2, .demo-copy h2, .center-head h2, .comparison-copy h2, .faq-head h2, .final-cta h2 {
    font-size: clamp(52px, 6.4vw, 94px);
    line-height: .93;
    letter-spacing: -.065em;
    margin: 0;
    font-weight: 750
}

.hero h1 em, .section-head h2 em, .demo-copy h2 em, .center-head h2 em, .comparison-copy h2 em, .faq-head h2 em, .final-cta h2 em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400
}

.hero h1 em {
    color: var(--lime)
}

.hero-sub {
    font-size: 18px;
    line-height: 1.65;
    color: rgba(244, 242, 235, .68);
    max-width: 590px;
    margin: 30px 0 31px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px
}

.play-dot {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    font-size: 8px
}

.hero-proof {
    display: flex;
    margin-top: 48px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    gap: 36px
}

.hero-proof div {
    display: flex;
    flex-direction: column;
    gap: 5px
}

.hero-proof strong {
    font-size: 13px
}

.hero-proof span {
    font-size: 11px;
    color: rgba(244, 242, 235, .45)
}

.hero-stage {
    min-height: 600px;
    position: relative;
    display: grid;
    place-items: center
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: .22
}

.hero-glow-one {
    width: 430px;
    height: 430px;
    background: #c3e65f;
    right: 8%;
    top: 15%
}

.hero-glow-two {
    width: 400px;
    height: 400px;
    background: #4558bb;
    right: 33%;
    bottom: -14%
}

.stage-orbit {
    position: absolute;
    border: 1px solid rgba(230, 255, 89, .18);
    border-radius: 50%;
    animation: spin 18s linear infinite
}

.orbit-a {
    width: 650px;
    height: 650px
}

.orbit-b {
    width: 510px;
    height: 510px;
    animation-direction: reverse;
    animation-duration: 24s
}

.app-shell {
    width: min(760px, 100%);
    background: #e9e7df;
    border-radius: 18px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .36);
    overflow: hidden;
    color: #1c1d20;
    transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
    border: 1px solid rgba(255, 255, 255, .2)
}

.floating {
    animation: float 6s ease-in-out infinite
}

.app-topbar {
    height: 52px;
    background: #f7f5ef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border-bottom: 1px solid #d3d0c8
}

.app-brand-mini {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 750
}

.app-brand-mini img {
    height: 30px
}

.app-top-actions {
    display: flex;
    gap: 6px
}

.app-top-actions span {
    width: 6px;
    height: 6px;
    background: #c4c1b8;
    border-radius: 50%
}

.app-body {
    display: grid;
    grid-template-columns:54px 1fr 180px;
    height: 435px
}

.app-tools {
    background: #1b1d21;
    padding: 10px 7px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.tool {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    border: 0;
    background: transparent;
    color: #858a8b;
    font-size: 18px
}

.tool.active {
    background: var(--lime);
    color: #111
}

.canvas-area {
    position: relative;
    background: #dcdad3;
    background-image: linear-gradient(rgba(20, 20, 20, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 20, 20, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px
}

.hero-window {
    width: 92%;
    max-width: 470px;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, .1))
}

.dimension {
    position: absolute;
    color: #777b78;
    font-size: 9px
}

.dim-top {
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1px solid #9a9d98;
    width: 48%;
    text-align: center
}

.dim-top span {
    position: relative;
    top: -7px;
    background: #dcdad3;
    padding: 0 7px
}

.dim-side {
    left: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    border-top: 1px solid #9a9d98;
    width: 180px;
    text-align: center
}

.dim-side span {
    position: relative;
    top: -7px;
    background: #dcdad3;
    padding: 0 7px
}

.canvas-badge {
    position: absolute;
    left: 15px;
    bottom: 13px;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(9px);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px
}

.pulse {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #58a24d;
    box-shadow: 0 0 0 0 rgba(88, 162, 77, .4);
    animation: pulse 1.8s infinite
}

.view-switch {
    position: absolute;
    right: 15px;
    bottom: 13px;
    display: flex;
    background: #c6c3ba;
    border-radius: 8px;
    padding: 2px
}

.view-switch button {
    border: 0;
    background: transparent;
    padding: 6px 9px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 800;
    color: #6b6e6b
}

.view-switch .active {
    background: #fff;
    color: #111
}

.properties-panel {
    background: #f7f5ef;
    padding: 15px;
    border-left: 1px solid #d3d0c8;
    font-size: 9px
}

.panel-title {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 19px
}

.properties-panel label {
    display: block;
    color: #777a77;
    margin-bottom: 13px
}

.properties-panel select, .properties-panel input {
    display: block;
    width: 100%;
    border: 1px solid #d8d4ca;
    background: #fff;
    border-radius: 7px;
    padding: 8px;
    margin-top: 6px;
    font-size: 9px
}

.field-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 7px
}

.swatches {
    display: flex;
    gap: 6px;
    margin-top: 7px
}

.swatch, .config-swatches button {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1)
}

.swatch.active, .config-swatches button.active {
    border-color: var(--lime);
    outline: 1px solid #111
}

.swatch.dark, .c-dark {
    background: #202225
}

.swatch.white, .c-light {
    background: #efede7
}

.swatch.bronze, .c-bronze {
    background: #665447
}

.swatch.wood {
    background: linear-gradient(90deg, #73523a, #a67b53, #65442f)
}

.panel-card {
    background: #1e2024;
    color: #fff;
    border-radius: 10px;
    padding: 12px;
    margin-top: 20px
}

.panel-card span, .panel-card strong {
    display: block
}

.panel-card span {
    color: #9da09f;
    margin-bottom: 5px
}

.panel-card strong {
    color: var(--lime)
}

.float-card {
    position: absolute;
    background: rgba(248, 247, 242, .93);
    backdrop-filter: blur(14px);
    color: #17181b;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .45);
    animation: float 5.5s ease-in-out infinite
}

.float-card small, .float-card strong {
    display: block
}

.float-card small {
    font-size: 9px;
    color: #747774
}

.float-card strong {
    font-size: 12px
}

.fc-icon {
    width: 30px;
    height: 30px;
    background: #191b1f;
    color: var(--lime);
    display: grid;
    place-items: center;
    border-radius: 9px
}

.signal {
    font-size: 9px;
    color: #5d9d53
}

.fc-one {
    left: -10px;
    top: 95px
}

.fc-two {
    right: -20px;
    bottom: 118px;
    animation-delay: -1s
}

.fc-three {
    right: 35px;
    top: 38px;
    display: block;
    min-width: 140px
}

.fc-three strong {
    font-size: 34px;
    letter-spacing: -.04em
}

.mini-label {
    display: block;
    font-size: 7px;
    color: #90938f
}

.hero-footnote {
    font-size: 9px;
    color: rgba(244, 242, 235, .32);
    margin-top: 18px
}

.role-strip {
    height: 62px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    display: flex;
    align-items: center
}

.role-track-wrap {
    overflow: hidden
}

.role-track {
    display: flex;
    width: max-content;
    gap: 29px;
    align-items: center;
    animation: marquee 28s linear infinite;
    color: rgba(244, 242, 235, .45);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em
}

.role-track i {
    font-style: normal;
    color: var(--lime);
    font-size: 8px
}

.light-section {
    background: var(--paper);
    color: var(--ink)
}

.cream-section {
    background: var(--cream);
    color: var(--ink)
}

.section-head {
    display: grid;
    grid-template-columns:1.15fr .65fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 66px
}

.section-head.compact {
    margin-bottom: 48px
}

.section-head h2, .demo-copy h2, .center-head h2, .comparison-copy h2, .faq-head h2, .final-cta h2 {
    font-size: clamp(45px, 5.5vw, 78px)
}

.section-head p {
    margin: 0 0 6px;
    color: #696d68;
    line-height: 1.65;
    font-size: 15px
}

.feature-browser {
    border: 1px solid rgba(17, 18, 21, .16);
    border-radius: 26px;
    overflow: hidden;
    background: #ece9e1
}

.feature-tabs {
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    background: #dedbd3;
    border-bottom: 1px solid rgba(17, 18, 21, .13)
}

.feature-tab {
    border: 0;
    background: transparent;
    padding: 20px 18px;
    font-weight: 800;
    color: #6e716d;
    cursor: pointer;
    border-right: 1px solid rgba(17, 18, 21, .1);
    text-align: left;
    transition: .2s
}

.feature-tab:last-child {
    border-right: 0
}

.feature-tab span {
    font-size: 9px;
    display: block;
    margin-bottom: 7px;
    opacity: .65
}

.feature-tab.active {
    background: var(--ink);
    color: var(--paper)
}

.feature-content {
    display: grid;
    grid-template-columns:.9fr 1.25fr;
    min-height: 470px
}

.feature-copy {
    padding: 60px 55px
}

.feature-kicker {
    font-size: 10px;
    letter-spacing: .12em;
    color: #81857e;
    font-weight: 800
}

.feature-copy h3 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -.04em;
    margin: 16px 0
}

.feature-copy p {
    color: #696d68;
    line-height: 1.6
}

.feature-copy ul {
    list-style: none;
    padding: 0;
    margin: 26px 0
}

.feature-copy li {
    padding: 9px 0;
    border-top: 1px solid rgba(17, 18, 21, .1);
    font-size: 13px
}

.feature-copy li:before {
    content: "↗";
    margin-right: 11px;
    color: #777
}

.text-link {
    border: 0;
    background: none;
    padding: 0;
    color: var(--ink);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    cursor: pointer
}

.feature-visual {
    position: relative;
    overflow: hidden;
    background: #222429;
    min-height: 470px
}

.visual-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 36px 36px
}

.mini-window {
    position: absolute;
    border: 10px solid #c9cac6;
    background: linear-gradient(145deg, #89a3a3, #d2dcda);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .3)
}

.mini-window:before, .mini-window:after {
    content: "";
    position: absolute;
    background: #c9cac6
}

.mini-window:before {
    width: 8px;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.mini-window:after {
    height: 8px;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.mw-one {
    width: 270px;
    height: 185px;
    left: 13%;
    top: 18%;
    transform: rotate(-4deg)
}

.mw-two {
    width: 205px;
    height: 145px;
    right: 10%;
    bottom: 12%;
    transform: rotate(6deg);
    opacity: .7
}

.mw-three {
    width: 140px;
    height: 100px;
    right: 18%;
    top: 10%;
    transform: rotate(2deg);
    opacity: .5
}

.cursor-dot {
    position: absolute;
    left: 50%;
    top: 47%;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lime);
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #111;
    box-shadow: 0 0 0 9px rgba(230, 255, 89, .12);
    animation: cursorMove 5s ease-in-out infinite
}

.tooltip-chip {
    position: absolute;
    left: 54%;
    top: 51%;
    font-size: 9px;
    background: #fff;
    color: #111;
    padding: 7px 9px;
    border-radius: 7px
}

.dark-section {
    background: #1a1c20;
    position: relative;
    overflow: hidden
}

.dark-section:before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: #4558bb;
    filter: blur(120px);
    opacity: .12;
    right: -8%;
    bottom: -20%
}

.demo-grid {
    display: grid;
    grid-template-columns:.68fr 1.32fr;
    gap: 70px;
    align-items: start
}

.demo-copy p {
    color: rgba(244, 242, 235, .6);
    line-height: 1.65;
    max-width: 430px;
    margin: 27px 0
}

.demo-copy em {
    color: var(--lime)
}

.demo-stat {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding-top: 18px;
    margin-top: 45px
}

.demo-stat span, .demo-stat strong {
    display: block
}

.demo-stat span {
    font-size: 9px;
    letter-spacing: .15em;
    color: #858986;
    margin-bottom: 8px
}

.demo-stat strong {
    font-size: 14px
}

.configurator {
    background: #f0eee7;
    color: #111;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .2)
}

.config-toolbar {
    padding: 18px;
    border-bottom: 1px solid #d5d1c7;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.config-group {
    min-width: 0
}

.config-group label {
    display: block;
    font-size: 9px;
    color: #777a77;
    font-weight: 800;
    letter-spacing: .06em;
    margin-bottom: 7px
}

.segmented {
    display: flex;
    background: #dedbd2;
    border-radius: 10px;
    padding: 3px
}

.segmented button {
    flex: 1;
    border: 0;
    background: transparent;
    border-radius: 8px;
    padding: 9px 6px;
    font-size: 9px;
    font-weight: 800;
    color: #666;
    cursor: pointer
}

.segmented button.active {
    background: #1b1d20;
    color: #fff
}

.two-col {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 16px;
    grid-column: 1/-1
}

.two-col select {
    width: 100%;
    border: 1px solid #d0ccc2;
    background: #fff;
    border-radius: 9px;
    padding: 10px
}

.config-swatches {
    display: flex;
    gap: 8px
}

.config-swatches button {
    cursor: pointer
}

.config-canvas {
    min-height: 430px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 65px 82px;
    background: #d9d7d0;
    background-image: linear-gradient(rgba(20, 20, 20, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 20, 20, .045) 1px, transparent 1px);
    background-size: 31px 31px
}

.config-canvas svg {
    width: 90%;
    max-height: 300px;
    filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .16))
}

.config-dim {
    position: absolute;
    font-size: 9px;
    color: #777
}

.config-dim.top {
    top: 30px
}

.config-dim.side {
    left: 15px;
    top: 50%;
    transform: rotate(-90deg)
}

.config-bottom {
    position: absolute;
    bottom: 15px;
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 18px;
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 14px
}

.config-bottom label {
    display: grid;
    grid-template-columns:auto 1fr auto auto;
    align-items: center;
    gap: 7px;
    font-size: 8px;
    font-weight: 800;
    color: #666
}

.config-bottom input {
    width: 100%;
    accent-color: #111
}

.workflow-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    border-top: 1px solid rgba(17, 18, 21, .16);
    border-left: 1px solid rgba(17, 18, 21, .16)
}

.workflow-card {
    min-height: 365px;
    padding: 24px;
    border-right: 1px solid rgba(17, 18, 21, .16);
    border-bottom: 1px solid rgba(17, 18, 21, .16);
    display: flex;
    flex-direction: column
}

.step-no {
    font-size: 10px;
    color: #888;
    font-weight: 800
}

.step-icon {
    height: 130px;
    margin: 20px 0;
    position: relative;
    display: grid;
    place-items: center
}

.measure-icon span {
    width: 120px;
    height: 36px;
    border: 2px solid #17191d;
    border-radius: 9px;
    position: relative
}

.measure-icon span:before {
    content: "↔";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900
}

.measure-icon span:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 1px;
    background: #17191d;
    right: -48px;
    top: -25px;
    transform: rotate(-28deg)
}

.draw-icon span {
    width: 110px;
    height: 80px;
    border: 8px solid #17191d;
    position: relative
}

.draw-icon span:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #17191d;
    transform: translateX(-50%)
}

.view-icon span {
    width: 120px;
    height: 72px;
    background: linear-gradient(145deg, #889b98, #d4dcda);
    border: 8px solid #17191d;
    transform: perspective(300px) rotateY(-16deg) rotateX(7deg);
    box-shadow: 14px 14px 0 #9da5a1
}

.share-icon span {
    width: 105px;
    height: 74px;
    border: 2px solid #17191d;
    border-radius: 7px;
    position: relative
}

.share-icon span:before {
    content: "PDF";
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 12px;
    font-weight: 900
}

.share-icon span:after {
    content: "↗";
    position: absolute;
    right: -17px;
    top: -17px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--lime);
    display: grid;
    place-items: center;
    font-weight: 900
}

.workflow-card h3 {
    font-size: 24px;
    letter-spacing: -.03em;
    margin: 0 0 11px
}

.workflow-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #6e716c
}

.workflow-card small {
    margin-top: auto;
    font-size: 9px;
    letter-spacing: .14em;
    color: #93958f
}

.center-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 58px
}

.center-head h2 {
    font-size: clamp(44px, 5.2vw, 75px)
}

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

.solution-card {
    background: #e9e5da;
    border: 1px solid rgba(17, 18, 21, .12);
    border-radius: 22px;
    padding: 21px;
    min-height: 475px;
    display: flex;
    flex-direction: column;
    transition: .25s
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(27, 26, 22, .13)
}

.solution-card.featured {
    background: var(--ink);
    color: var(--paper)
}

.solution-number {
    font-size: 9px;
    color: #858780
}

.solution-art {
    height: 180px;
    position: relative;
    margin: 20px 0 10px;
    border-radius: 16px;
    overflow: hidden;
    background: #d8d4c8
}

.featured .solution-art {
    background: #24262a
}

.building {
    position: absolute;
    width: 110px;
    height: 110px;
    background: #b9b5a9;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -42%);
    clip-path: polygon(0 22%, 50% 0, 100% 22%, 100% 100%, 0 100%)
}

.window-stack {
    position: absolute;
    display: grid;
    grid-template-columns:repeat(3, 26px);
    gap: 4px;
    left: 50%;
    top: 57%;
    transform: translate(-50%, -50%)
}

.window-stack i {
    height: 38px;
    background: #202225;
    border: 3px solid var(--lime)
}

.showroom-art .room {
    position: absolute;
    inset: 32px;
    background: linear-gradient(135deg, #f7f3e8 50%, #b7aea1 50%);
    border: 2px solid #17191d
}

.showroom-art .sample {
    position: absolute;
    width: 65px;
    height: 82px;
    border: 6px solid #17191d;
    right: 50px;
    top: 47px;
    background: #8aa2a2
}

.tablet-art {
    position: absolute;
    width: 95px;
    height: 135px;
    border: 8px solid #17191d;
    border-radius: 12px;
    background: #8ca09e;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-6deg)
}

.check-art {
    position: absolute;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--lime);
    right: 30px;
    bottom: 27px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 24px
}

.laser-art {
    position: absolute;
    width: 110px;
    height: 48px;
    border-radius: 10px;
    background: #1b1d20;
    color: var(--lime);
    left: 33px;
    top: 68px;
    display: grid;
    place-items: center;
    font-size: 25px
}

.measure-line {
    position: absolute;
    width: 150px;
    height: 1px;
    background: #1b1d20;
    left: 115px;
    top: 93px
}

.measure-line:after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #e6604a
}

.solution-card h3 {
    font-size: 24px;
    letter-spacing: -.035em;
    margin: 12px 0
}

.solution-card p {
    font-size: 12.5px;
    line-height: 1.55;
    color: #6c6e68
}

.solution-card.featured p {
    color: rgba(244, 242, 235, .55)
}

.solution-card a {
    margin-top: auto;
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800
}

.comparison {
    background: #121316
}

.comparison-grid {
    display: grid;
    grid-template-columns:.72fr 1.28fr;
    gap: 80px;
    align-items: center
}

.comparison-copy em, .faq-head em, .final-cta em {
    color: var(--lime)
}

.comparison-copy p, .faq-head p {
    color: rgba(244, 242, 235, .6);
    line-height: 1.65;
    margin: 28px 0;
    max-width: 460px
}

.comparison-table {
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 20px;
    overflow: hidden
}

.comp-row {
    display: grid;
    grid-template-columns:1.2fr 1fr 1fr;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    align-items: stretch
}

.comp-row:last-child {
    border-bottom: 0
}

.comp-row span {
    padding: 20px;
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(244, 242, 235, .56);
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.comp-row span:first-child {
    color: #fff;
    font-weight: 700
}

.comp-row span:last-child {
    border-right: 0
}

.comp-row.head {
    background: #1b1d21
}

.comp-row.head span {
    font-size: 9px;
    letter-spacing: .13em;
    font-weight: 800
}

.accent-cell {
    background: rgba(230, 255, 89, .08) !important;
    color: var(--lime) !important
}

.pricing-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 13px
}

.price-card {
    border: 1px solid rgba(17, 18, 21, .15);
    border-radius: 22px;
    padding: 25px;
    min-height: 490px;
    display: flex;
    flex-direction: column;
    background: #f7f5ef;
    position: relative
}

.price-card.pro {
    background: #1a1c20;
    color: #f4f2eb
}

.popular {
    position: absolute;
    right: 18px;
    top: -12px;
    background: var(--lime);
    color: #111;
    padding: 7px 9px;
    border-radius: 999px;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: .1em
}

.price-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em
}

.pill {
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 6px 8px;
    font-size: 7px
}

.pill.lime {
    background: var(--lime);
    color: #111;
    border: 0
}

.price-card h3 {
    font-size: 27px;
    margin: 28px 0 6px;
    letter-spacing: -.04em
}

.price {
    font-size: 37px;
    font-weight: 800;
    letter-spacing: -.05em
}

.price small {
    font-size: 10px;
    color: #777;
    font-weight: 600;
    letter-spacing: 0
}

.text-price {
    font-size: 24px
}

.price-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #70736d
}

.price-card.pro p {
    color: rgba(244, 242, 235, .58)
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 26px 0 28px
}

.price-card li {
    padding: 10px 0;
    border-top: 1px solid rgba(17, 18, 21, .11);
    font-size: 12px
}

.price-card.pro li {
    border-color: rgba(255, 255, 255, .1)
}

.price-card li:before {
    content: "✓";
    margin-right: 9px
}

.price-card .button {
    margin-top: auto
}

.faq-section {
    background: #1b1d21
}

.faq-grid {
    display: grid;
    grid-template-columns:.72fr 1.28fr;
    gap: 90px
}

.accordion {
    border-top: 1px solid rgba(255, 255, 255, .16)
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .16)
}

.faq-q {
    width: 100%;
    border: 0;
    background: none;
    color: #fff;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer
}

.faq-q i {
    font-style: normal;
    font-size: 24px;
    font-weight: 300;
    transition: .25s
}

.faq-item.open .faq-q i {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-a p {
    color: rgba(244, 242, 235, .55);
    font-size: 13px;
    line-height: 1.65;
    padding: 0 45px 25px 0;
    margin: 0
}

.faq-item.open .faq-a {
    max-height: 180px
}

.light-link {
    color: var(--paper)
}

.final-cta {
    padding: 110px 0;
    background: #0e0f11;
    position: relative;
    overflow: hidden
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(230, 255, 89, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(230, 255, 89, .06) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to right, transparent, black 30%, black 70%, transparent)
}

.final-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns:1.1fr .7fr;
    gap: 90px;
    align-items: end
}

.cta-kicker {
    font-size: 10px;
    color: var(--lime);
    letter-spacing: .17em;
    font-weight: 900
}

.final-cta h2 {
    margin-top: 25px
}

.cta-side p {
    color: rgba(244, 242, 235, .57);
    line-height: 1.65;
    margin-bottom: 26px
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.store-placeholder {
    display: flex;
    gap: 8px;
    margin-top: 30px
}

.store-placeholder span {
    font-size: 9px;
    letter-spacing: .1em;
    color: #828681;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    padding: 8px 11px
}

footer {
    background: #0b0c0d;
    padding: 65px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns:2.1fr repeat(4, 1fr);
    gap: 45px
}

.footer-brand p {
    max-width: 300px;
    color: #6d716d;
    font-size: 12px;
    line-height: 1.6
}

.footer-grid h4 {
    font-size: 10px;
    letter-spacing: .12em;
    margin: 9px 0 16px;
    color: #a2a5a0
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 48px;
    padding-top: 21px;
    display: flex;
    justify-content: space-between;
    color: #5e625e;
    font-size: 9px
}

.modal-backdrop, .video-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(9px);
    display: grid;
    place-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    padding: 22px
}

.modal-backdrop.open, .video-backdrop.open {
    opacity: 1;
    pointer-events: auto
}

.modal {
    background: #f2f0e9;
    color: #111;
    width: min(720px, 100%);
    border-radius: 24px;
    padding: 42px;
    position: relative;
    transform: translateY(15px) scale(.985);
    transition: .25s
}

.open .modal {
    transform: none
}

.modal-close, .video-modal > button {
    position: absolute;
    right: 17px;
    top: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(17, 18, 21, .15);
    background: transparent;
    font-size: 23px;
    cursor: pointer;
    z-index: 2
}

.modal-kicker {
    font-size: 9px;
    letter-spacing: .15em;
    color: #70736d;
    font-weight: 900
}

.modal h2 {
    font-size: 42px;
    letter-spacing: -.05em;
    margin: 13px 0
}

.modal p {
    color: #6b6e69;
    line-height: 1.55
}

.modal form {
    margin-top: 25px;
    display: grid;
    gap: 13px
}

.form-row {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 13px
}

.modal label {
    font-size: 9px;
    font-weight: 800;
    color: #676a66
}

.modal input, .modal select {
    display: block;
    width: 100%;
    margin-top: 6px;
    border: 1px solid #d0cdc4;
    background: #fff;
    padding: 13px;
    border-radius: 10px;
    font: inherit;
    font-size: 12px
}

.success-state {
    text-align: center;
    padding: 20px 0
}

.success-mark {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--lime);
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 900
}

.video-modal {
    position: relative;
    width: min(900px, 100%);
    background: #111316;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9
}

.video-modal > button {
    border-color: rgba(255, 255, 255, .2);
    color: #fff
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 30px;
    background: radial-gradient(circle at 50% 40%, rgba(230, 255, 89, .14), transparent 30%), linear-gradient(135deg, #1c1f24, #0c0d0f)
}

.video-play {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--lime);
    color: #111;
    font-size: 22px;
    padding-left: 4px;
    margin-bottom: 25px
}

.video-placeholder span {
    font-size: 9px;
    letter-spacing: .16em;
    color: #8b8e8a
}

.video-placeholder h3 {
    font-size: 38px;
    letter-spacing: -.04em;
    margin: 12px
}

.video-placeholder p {
    max-width: 590px;
    color: #7e827d;
    font-size: 13px;
    line-height: 1.6
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%, 20px);
    background: #fff;
    color: #111;
    border-radius: 999px;
    padding: 12px 18px;
    z-index: 120;
    font-size: 11px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    box-shadow: var(--shadow)
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

.cookie {
    position: fixed;
    left: 22px;
    right: 22px;
    bottom: 18px;
    background: rgba(245, 243, 236, .96);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
    color: #111;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 14px 18px;
    gap: 25px;
    transform: translateY(140%);
    transition: .4s
}

.cookie.show {
    transform: none
}

.cookie strong, .cookie span {
    display: block
}

.cookie strong {
    font-size: 12px
}

.cookie span {
    font-size: 9px;
    color: #72756f;
    margin-top: 3px
}

.cookie > div:last-child {
    display: flex;
    gap: 12px;
    flex: none
}

.cookie .button-text {
    color: #555
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes float {
    0%, 100% {
        transform: perspective(1200px) rotateY(-5deg) rotateX(2deg) translateY(0)
    }
    50% {
        transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-10px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 8px rgba(88, 162, 77, 0)
    }
    100% {
        box-shadow: 0 0 0 0 rgba(88, 162, 77, 0)
    }
}

@keyframes marquee {
    to {
        transform: translateX(-50%)
    }
}

@keyframes cursorMove {
    0%, 100% {
        transform: translate(0, 0)
    }
    35% {
        transform: translate(100px, -50px)
    }
    70% {
        transform: translate(-70px, 65px)
    }
}

@media (max-width: 1080px) {
    .desktop-nav {
        gap: 18px
    }

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

    .hero-copy {
        max-width: 760px
    }

    .hero-stage {
        min-height: 520px
    }

    .app-shell {
        width: 82%
    }

    .fc-one {
        left: 4%
    }

    .fc-two {
        right: 4%
    }

    .section-head, .demo-grid, .comparison-grid, .faq-grid, .final-cta-inner {
        grid-template-columns:1fr;
        gap: 45px
    }

    .demo-copy {
        max-width: 650px
    }

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

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

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

    .price-card {
        min-height: auto
    }

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

@media (max-width: 820px) {
    .container {
        width: min(100% - 30px, var(--max))
    }

    .section-pad {
        padding: 82px 0
    }

    .desktop-nav, .desktop-only {
        display: none
    }

    .menu-btn {
        display: block
    }

    .nav-actions {
        margin-left: auto
    }

    .lang-menu {
        right: 45px
    }

    .mobile-menu {
        display: flex;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        background: #15171a;
        padding: 18px 22px 25px;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: .25s;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .mobile-menu.open {
        opacity: 1;
        pointer-events: auto;
        transform: none
    }

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        font-weight: 700
    }

    .mobile-menu-actions {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: 10px;
        margin-top: 18px
    }

    .hero {
        padding-top: 76px
    }

    .hero h1 {
        font-size: clamp(50px, 14vw, 76px)
    }

    .hero-sub {
        font-size: 16px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .hero-proof {
        gap: 18px;
        justify-content: space-between
    }

    .hero-stage {
        min-height: 430px;
        margin-top: 10px
    }

    .app-shell {
        width: 100%;
        transform: none
    }

    .floating {
        animation: none
    }

    .app-body {
        grid-template-columns:44px 1fr
    }

    .properties-panel {
        display: none
    }

    .app-tools {
        padding: 8px 4px
    }

    .tool {
        width: 36px;
        height: 36px
    }

    .canvas-area {
        padding: 25px
    }

    .fc-one {
        left: -5px;
        top: 55px
    }

    .fc-two {
        right: -5px;
        bottom: 50px
    }

    .fc-three {
        display: none
    }

    .feature-tabs {
        grid-template-columns:1fr 1fr 1fr
    }

    .feature-tab:nth-child(n+4) {
        border-top: 1px solid rgba(17, 18, 21, .1)
    }

    .feature-content {
        grid-template-columns:1fr
    }

    .feature-copy {
        padding: 38px 30px
    }

    .feature-visual {
        min-height: 350px
    }

    .workflow-grid, .solution-grid {
        grid-template-columns:1fr 1fr
    }

    .comparison-table {
        overflow-x: auto
    }

    .comp-row {
        min-width: 620px
    }

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

    .footer-brand {
        grid-column: 1/-1
    }

    .announcement {
        font-size: 9px;
        padding: 0 8px;
        text-align: center
    }

    .announcement a {
        display: none
    }
}

@media (max-width: 560px) {
    .section-pad {
        padding: 68px 0
    }

    .hero {
        padding-top: 60px
    }

    .hero h1, .section-head h2, .demo-copy h2, .center-head h2, .comparison-copy h2, .faq-head h2, .final-cta h2 {
        font-size: 47px
    }

    .hero-proof {
        display: grid;
        grid-template-columns:repeat(3, 1fr)
    }

    .hero-proof strong {
        font-size: 11px
    }

    .hero-proof span {
        font-size: 9px
    }

    .hero-stage {
        min-height: 345px
    }

    .app-shell {
        border-radius: 12px
    }

    .app-topbar {
        height: 40px
    }

    .app-body {
        height: 290px
    }

    .canvas-area {
        padding: 15px
    }

    .dim-side {
        display: none
    }

    .float-card {
        transform: scale(.82);
        animation: none
    }

    .fc-one {
        left: -26px;
        top: 25px
    }

    .fc-two {
        right: -25px;
        bottom: 24px
    }

    .feature-tabs {
        grid-template-columns:1fr 1fr
    }

    .feature-tab {
        padding: 16px 13px
    }

    .feature-content {
        min-height: 0
    }

    .feature-copy h3 {
        font-size: 28px
    }

    .mw-one {
        width: 220px;
        height: 150px;
        left: 7%
    }

    .mw-two {
        width: 160px;
        height: 115px
    }

    .demo-grid {
        gap: 30px
    }

    .config-toolbar {
        grid-template-columns:1fr
    }

    .two-col {
        grid-template-columns:1fr;
        grid-column: auto
    }

    .config-canvas {
        min-height: 360px;
        padding: 40px 28px 92px
    }

    .config-bottom {
        grid-template-columns:1fr
    }

    .workflow-grid, .solution-grid {
        grid-template-columns:1fr
    }

    .workflow-card {
        min-height: 310px
    }

    .solution-card {
        min-height: 430px
    }

    .section-head {
        gap: 25px;
        margin-bottom: 40px
    }

    .pricing-grid {
        gap: 17px
    }

    .faq-grid {
        gap: 35px
    }

    .final-cta-inner {
        gap: 34px
    }

    .cta-actions {
        flex-direction: column
    }

    .cta-actions .button {
        width: 100%
    }

    .footer-grid {
        grid-template-columns:1fr 1fr;
        gap: 32px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 9px
    }

    .modal {
        padding: 33px 21px
    }

    .modal h2 {
        font-size: 34px
    }

    .form-row {
        grid-template-columns:1fr
    }

    .cookie {
        left: 10px;
        right: 10px;
        bottom: 10px;
        align-items: stretch;
        flex-direction: column;
        gap: 10px
    }

    .cookie > div:last-child {
        display: grid;
        grid-template-columns:1fr 1fr
    }

    .role-strip {
        height: 54px
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition-duration: .001ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

/* =========================================================
   V2 — LIGHT-FIRST INDUSTRIAL SAAS SYSTEM
   Warm white + architectural graphite + cobalt blue.
   Green is reserved for successful/connected states.
   ========================================================= */
:root {
    --ink: #101820;
    --ink-2: #18232f;
    --paper: #f7f8fa;
    --paper-2: #edf1f5;
    --cream: #eef2f5;
    --lime: #2f6bff;
    --blue: #2f6bff;
    --blue-deep: #1748c9;
    --signal: #39c983;
    --line: rgba(16, 24, 32, .12);
    --muted: #65717d;
    --white: #fff;
    --shadow: 0 28px 80px rgba(23, 45, 72, .14);
}

body {
    background: var(--paper);
    color: var(--ink)
}

.noise {
    opacity: .012
}

.announcement {
    background: var(--ink);
    color: #f7f8fa;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.announcement-dot {
    background: var(--signal);
    box-shadow: 0 0 0 4px rgba(57, 201, 131, .12)
}

.site-header {
    background: rgba(247, 248, 250, .88);
    border-bottom: 1px solid rgba(16, 24, 32, .09);
    box-shadow: 0 8px 30px rgba(23, 45, 72, .035)
}

.site-header .brand {
    color: var(--ink)
}

.desktop-nav a {
    color: #53606c
}

.desktop-nav a:hover {
    color: var(--blue)
}

.site-header .lang-btn {
    color: #53606c
}

.site-header .button-ghost {
    color: var(--ink);
    border-color: rgba(16, 24, 32, .16);
    background: #fff
}

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

.button-lime {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 28px rgba(47, 107, 255, .18)
}

.button-lime:hover {
    background: var(--blue-deep)
}

.button-outline:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.lang-menu {
    background: #fff;
    border-color: rgba(16, 24, 32, .1);
    box-shadow: var(--shadow)
}

.lang-menu button {
    color: var(--ink)
}

.lang-menu button:hover {
    background: #f0f3f7
}

.menu-btn span {
    background: var(--ink)
}

.hero {
    background: linear-gradient(180deg, #fbfcfd 0%, #f4f7fa 100%);
    color: var(--ink)
}

.hero:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(16, 24, 32, .08)
}

.hero .eyebrow {
    color: #6d7984
}

.hero .eyebrow-line {
    background: rgba(16, 24, 32, .18)
}

.hero h1 em {
    color: var(--blue)
}

.hero-sub {
    color: #5e6b77
}

.hero .button-text {
    color: #293847
}

.hero .play-dot {
    border-color: rgba(16, 24, 32, .16);
    background: #fff
}

.hero-proof {
    border-color: rgba(16, 24, 32, .1)
}

.hero-proof span {
    color: #7c8791
}

.hero-footnote {
    color: #8a949d
}

.hero-glow {
    filter: blur(100px);
    opacity: .14
}

.hero-glow-one {
    background: #2f6bff
}

.hero-glow-two {
    background: #64d7ac
}

.stage-orbit {
    border-color: rgba(47, 107, 255, .12)
}

.app-shell {
    background: #edf1f5;
    border-color: rgba(16, 24, 32, .08);
    box-shadow: 0 44px 110px rgba(31, 53, 82, .22)
}

.app-topbar {
    background: #fbfcfd;
    border-color: #dfe5eb
}

.app-tools {
    background: #101820
}

.tool.active {
    background: var(--blue);
    color: #fff
}

.canvas-area {
    background: #e8edf1;
    background-image: linear-gradient(rgba(16, 24, 32, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(16, 24, 32, .045) 1px, transparent 1px)
}

.dim-top span, .dim-side span {
    background: #e8edf1
}

.properties-panel {
    background: #fbfcfd;
    border-color: #dfe5eb
}

.swatch.active, .config-swatches button.active {
    border-color: var(--blue)
}

.panel-card {
    background: #101820
}

.panel-card strong {
    color: #93b2ff
}

.fc-icon {
    background: #eaf1ff;
    color: var(--blue)
}

.fc-one .fc-icon {
    background: #eafaf3;
    color: var(--signal)
}

.signal {
    color: var(--signal)
}

.pulse {
    background: var(--signal);
    box-shadow: 0 0 0 0 rgba(57, 201, 131, .35)
}

.role-strip {
    background: #fff;
    border-color: rgba(16, 24, 32, .08)
}

.role-track {
    color: #6d7883
}

.role-track i {
    color: var(--blue)
}

.light-section {
    background: #f7f8fa
}

.cream-section {
    background: #eef2f5
}

.section-head p, .feature-copy p, .solution-card p {
    color: #65717d
}

.eyebrow.dark {
    color: #71808c
}

.feature-browser {
    background: #f0f3f6;
    border-color: rgba(16, 24, 32, .12);
    box-shadow: 0 25px 70px rgba(23, 45, 72, .07)
}

.feature-tabs {
    background: #e9eef3;
    border-color: rgba(16, 24, 32, .1)
}

.feature-tab {
    color: #65717d;
    border-color: rgba(16, 24, 32, .08)
}

.feature-tab.active {
    background: var(--ink);
    color: #fff
}

.feature-copy li:before {
    color: var(--blue)
}

.text-link {
    color: var(--blue)
}

.feature-visual {
    background: #15202b
}

.cursor-dot {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 9px rgba(47, 107, 255, .11)
}

.dark-section {
    background: #101820;
    color: var(--paper)
}

.comparison {
    background: #101820;
    color: var(--paper)
}

.comparison-copy em, .faq-head em, .final-cta em {
    color: #8fb0ff
}

.accent-cell {
    background: rgba(47, 107, 255, .11) !important;
    color: #a9c0ff !important
}

.price-card {
    background: #fff;
    border-color: rgba(16, 24, 32, .1);
    box-shadow: 0 18px 55px rgba(23, 45, 72, .05)
}

.price-card.pro {
    background: #101820
}

.popular, .pill.lime {
    background: var(--blue);
    color: #fff
}

.faq-section {
    background: #18232f;
    color: var(--paper)
}

.final-cta {
    background: #101820;
    color: var(--paper)
}

.cta-grid-bg {
    background-image: linear-gradient(rgba(47, 107, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(47, 107, 255, .08) 1px, transparent 1px)
}

.cta-kicker {
    color: #8fb0ff
}

footer {
    background: #0b1219
}

.modal {
    background: #f7f8fa
}

.success-mark {
    background: var(--signal);
    color: #fff
}

.video-placeholder {
    background: radial-gradient(circle at 50% 40%, rgba(47, 107, 255, .18), transparent 30%), linear-gradient(135deg, #18232f, #0b1219)
}

.video-play {
    background: var(--blue);
    color: #fff
}

.cookie {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(16, 24, 32, .08)
}

@media (max-width: 820px) {
    .mobile-menu {
        background: rgba(247, 248, 250, .98);
        border-color: rgba(16, 24, 32, .1);
        box-shadow: 0 20px 45px rgba(23, 45, 72, .1)
    }

    .mobile-menu a {
        color: var(--ink);
        border-color: rgba(16, 24, 32, .08)
    }

    .site-header .button-ghost {
        background: #fff;
        color: var(--ink)
    }

    .site-header .button-dark {
        background: var(--ink);
        color: #fff
    }
}
