:root {
    --ink: var(--wp--preset--color--ink);
    --muted: var(--wp--preset--color--muted);
    --line: var(--wp--preset--color--line);
    --paper: #fff;
    --mist: #f5f8f6;
    --green: var(--wp--preset--color--green);
    --green-2: #bff29f;
    --green-dark: var(--wp--preset--color--green-dark);
    --deep: #102f20;
    --gold: #d2ad55;
    --danger: #b34a42;
    --radius: 28px;
    --radius-sm: 18px;
    --shadow: 0 28px 80px rgba(20, 56, 35, 0.12);
    --shadow-soft: 0 16px 46px rgba(20, 56, 35, 0.08);
    --max: 1500px;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/Manrope-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
::selection {
    background: var(--green);
    color: #0d1b12;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select {
    font: inherit;
}
.container {
    width: min(var(--max), calc(100% - 100px));
    margin: auto;
}
.narrow {
    width: min(840px, 100%);
}
.nav-wrap {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid transparent;
    transition: 0.25s;
    /* background: rgba(255, 255, 255, 0.78); */
    backdrop-filter: blur(18px);
}
.nav-wrap.scrolled {
    border-color: var(--line);
    /* background: rgba(255, 255, 255, 0.94); */
}
.nav {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    font-size: 21px;
    letter-spacing: -0.7px;
    white-space: nowrap;
}
.logo-mark {
    width: 25px;
    height: 25px;
    border-radius: 50% 50% 48% 52%;
    background: linear-gradient(145deg, var(--green), #4fa933);
    display: inline-block;
    position: relative;
    box-shadow: inset -5px -6px 12px rgba(20, 80, 25, 0.18);
}
.logo-mark:after {
    content: "";
    position: absolute;
    width: 3px;
    height: 15px;
    background: #fff;
    opacity: 0.8;
    left: 11px;
    top: 5px;
    border-radius: 5px;
    transform: rotate(23deg);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}
.nav-links a {
    font-size: 19px;
    color: #374840;
    font-weight: bold;
    color: var(--wp--preset--color--white);
    line-height: 26px;
}
.nav-links a:hover {
    color: var(--green-dark);
}
.menu-btn {
    display: none;
    margin-left: auto;
    border: 1px solid var(--line);
    background: #fff;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    cursor: pointer;
}
.nav-cta {
    margin-left: 4px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 18px 40px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 19px;
    line-height: 30px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--wp--preset--color--green);
    color: #000;
    box-shadow: 0 12px 30px rgba(16, 32, 25, 0.18);
}
/* .btn-primary:hover {
    background: var(--deep);
} */
.btn-green {
    background: var(--green);
    color: #102019;
    box-shadow: 0 12px 28px rgba(91, 178, 50, 0.22);
}
.btn-ghost {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}
.btn-sm {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
}
.arrow {
    font-size: 17px;
}
.hero {
    min-height: 850px;
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
    /* background: radial-gradient(
            circle at 73% 18%,
            rgba(132, 220, 77, 0.22),
            transparent 28%
        ),
        radial-gradient(
            circle at 84% 72%,
            rgba(210, 173, 85, 0.12),
            transparent 22%
        ),
        linear-gradient(#fff, #f9fbfa); */
}
/* .hero:before {
    content: "";
    position: absolute;
    inset: auto -180px -390px auto;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(132, 220, 77, 0.25);
    border-radius: 50%;
} */
.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 70px;
    align-items: center;
}

.hero h1, .hero p {
  color: #fff !important;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 14px;
    line-height: 26px;
    font-weight: 850;
    color: var(--green);
    margin-bottom: 22px;
}
/* .eyebrow:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
} */
h1,
h2,
h3,
p {
    margin-top: 0;
}
h1 {
    font-size: clamp(65px, 6vw, 90px);
    line-height: 0.96;
    letter-spacing: -5.2px;
    margin-bottom: 36px;
    max-width: 760px;
}
h2 {
    font-size: clamp(60px, 4.8vw, 80px);
    line-height: 1.01;
    letter-spacing: -3.3px;
    margin-bottom: 23px;
}
h3 {
    font-size: 23px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}
.accent {
    color: var(--green);
}
.hero-kicker {
    font-size: 25px;
    font-weight: 780;
    letter-spacing: -0.7px;
    margin-bottom: 20px;
}
.lead {
    font-size: 22px;
    line-height: 1.55;
    color: #435149;
    max-width: 700px;
}
.body {
    font-size: 17px;
    line-height: 1.68;
    color: #536159;
}
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 19px;
    margin: 36px 0 48px;
}
.microcopy {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    font-size: 16px;
    line-height: 40px;
    font-weight: 750;
    color: #fff;
}
.microcopy span {
    display: flex;
    align-items: center;
    gap: 12px;
}
/* .microcopy span:before {
    content: "✓";
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: transparent;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 16px;
    font-weight: 900;
    border: 1px solid var(--green);
} */
.device-scene {
    position: relative;
    min-height: 580px;
    display: grid;
    place-items: center;
}
.device {
    width: min(510px, 100%);
    background: #12231b;
    border: 9px solid #1f3329;
    border-radius: 42px;
    padding: 11px;
    box-shadow: 0 48px 100px rgba(21, 49, 32, 0.24);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: 0.25s;
}
.screen {
    background: #f8fbf9;
    border-radius: 27px;
    overflow: hidden;
    min-height: 520px;
}
.screen-top {
    height: 68px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5ebe7;
    background: #fff;
}
.screen-logo {
    font-weight: 850;
}
.status-pill {
    font-size: 11px;
    font-weight: 850;
    padding: 8px 11px;
    border-radius: 999px;
    background: #e7f8dd;
    color: #246230;
    display: flex;
    align-items: center;
    gap: 7px;
}
.pulse {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(132, 220, 77, 0.18);
}
.screen-body {
    padding: 22px;
}
.dashboard-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}
.asset-name {
    font-size: 22px;
    font-weight: 850;
    letter-spacing: -0.8px;
}
.asset-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}
.connection {
    font-size: 11px;
    padding: 8px 10px;
    border: 1px solid #dbe8df;
    border-radius: 10px;
    background: #fff;
    font-weight: 800;
}
.chart {
    height: 186px;
    margin: 20px 0 18px;
    border-radius: 18px;
    background: linear-gradient(#fff, #f0f7f2);
    position: relative;
    overflow: hidden;
    border: 1px solid #e4ebe7;
}
.chart-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
            to right,
            rgba(24, 58, 38, 0.06) 1px,
            transparent 1px
        ),
        linear-gradient(to bottom, rgba(24, 58, 38, 0.06) 1px, transparent 1px);
    background-size: 58px 46px;
}
.chart svg {
    position: absolute;
    inset: 23px 12px 13px;
    width: calc(100% - 24px);
    height: calc(100% - 36px);
}
.scan-label {
    position: absolute;
    right: 13px;
    top: 13px;
    padding: 7px 9px;
    border-radius: 9px;
    background: #102019;
    color: white;
    font-size: 10px;
    font-weight: 850;
}
.metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.metric {
    padding: 15px;
    border-radius: 15px;
    background: #fff;
    border: 1px solid #e1e9e4;
}
.metric-label {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 7px;
}
.metric-value {
    font-size: 14px;
    font-weight: 850;
}
.risk-progress {
    height: 6px;
    border-radius: 20px;
    background: #e7ece9;
    overflow: hidden;
    margin-top: 9px;
}
.risk-progress span {
    display: block;
    width: 48%;
    height: 100%;
    background: var(--green);
}
.floating {
    position: absolute;
    width: 205px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(223, 231, 226, 0.9);
    box-shadow: var(--shadow-soft);
    border-radius: 18px;
    padding: 16px;
    backdrop-filter: blur(15px);
}
.floating strong {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
.floating small {
    display: block;
    line-height: 1.45;
    color: var(--muted);
}
.float-1 {
    top: 42px;
    left: -25px;
}
.float-2 {
    right: -28px;
    bottom: 65px;
}
.float-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: #eaf9e0;
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 12px;
}
.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    padding: 25px 22px;
    border-right: 1px solid var(--line);
}
.trust-item:last-child {
    border-right: 0;
}
.trust-item strong {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}
.trust-item span {
    font-size: 12px;
    color: var(--muted);
}
.section {
    padding: 120px 0;
}
.section-sm {
    padding: 90px 0;
}
.section-mist {
    background: var(--mist);
}
.section-dark {
    background: var(--deep);
    color: #fff;
}
.section-dark .lead,
.section-dark .body {
    color: #c9d6ce;
}
.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.center .lead {
    margin-left: auto;
    margin-right: auto;
}
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-55 {
    grid-template-columns: 1.12fr 0.88fr;
}
.problem-stage {
    padding: 35px;
    border-radius: var(--radius);
    background: var(--ink);
    color: white;
    box-shadow: var(--shadow);
}
.problem-stage .small {
    color: var(--green-2);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 11px;
    margin-bottom: 35px;
}
.problem-stage .large {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2.4px;
    font-weight: 850;
}
.problem-stage .large span {
    display: block;
    color: #9aa8a1;
    margin-top: 12px;
}
.staccato {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}
.staccato span {
    background: white;
    border: 2px solid var(--green);
    border-radius: 999px;
    padding: 11px 15px;
    font-size: 18px;
    font-weight: 800;
}
.section-dark .staccato span {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
}
.grid-3,
.grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.card {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 10px 25px rgba(20, 56, 35, 0.035);
}
.card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0;
}
.card-icon {
    width: 53px;
    height: 53px;
    border-radius: 50px;
    background: #ABF5DE;
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 25px;
    font-size: 17px;
}
.card-dark {
    background: #173525;
    border-color: #2c4c39;
    color: #fff;
}
.card-dark p {
    color: #c7d5cc;
}
.step {
    position: relative;
    padding-top: 70px;
}
.step-number {
    position: absolute;
    top: 26px;
    left: 36px;

    width: 44px;
    height: 44px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 900;
    color: var(--wp--preset--color--background-dark);
    background: #fff;
}
.step-meta {
    font-size: 12px;
    font-weight: 800;
    color: var(--green-dark);
    margin-top: 18px;
}
.flow-arrow {
    position: absolute;
    right: -17px;
    top: 50%;
    z-index: 2;
    color: #9cad9f;
    font-size: 25px;
}
.focus-visual {
    min-height: 480px;
    border-radius: 38px;
    background: radial-gradient(
            circle at 50% 45%,
            rgba(132, 220, 77, 0.44),
            transparent 22%
        ),
        linear-gradient(150deg, #153624, #0d2418);
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
}
.orbit {
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: grid;
    place-items: center;
    position: relative;
}
.orbit:before,
.orbit:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}
.orbit:before {
    width: 230px;
    height: 230px;
}
.orbit:after {
    width: 410px;
    height: 410px;
}
.gold-core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(
        circle at 34% 29%,
        #f5dda0,
        #c69a35 52%,
        #80651f
    );
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    box-shadow: 0 0 80px rgba(223, 184, 83, 0.38);
    z-index: 2;
}
.orbit-label {
    position: absolute;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 750;
    backdrop-filter: blur(10px);
}
.ol-1 {
    top: 42px;
    right: 12px;
}
.ol-2 {
    bottom: 42px;
    left: 5px;
}
.ol-3 {
    top: 48%;
    left: -28px;
}
.controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.control {
    border-radius: 20px;
    border: 1px solid var(--line);
    padding: 22px;
    background: #fff;
}
.control-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.control-head strong {
    font-size: 15px;
}
.toggle {
    width: 42px;
    height: 24px;
    border-radius: 999px;
    background: var(--green);
    position: relative;
}
.toggle:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    right: 3px;
    top: 3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.control p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}
.control-wide {
    grid-column: span 2;
}
.threshold {
    height: 8px;
    border-radius: 999px;
    background: #e8eeea;
    margin-top: 16px;
    overflow: hidden;
}
.threshold span {
    display: block;
    height: 100%;
    width: 38%;
    background: linear-gradient(90deg, var(--green), var(--gold));
}
.tech-flow {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 48px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    overflow: hidden;
}
.tech-item {
    padding: 38px;
    background: #102f20;
}
.tech-num {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.tech-item h3 {
    font-size: 29px;
}
.tech-item p {
    color: #bfd0c5;
    line-height: 1.65;
}
.tech-note {
    margin-top: 24px;
    color: #9fb2a6;
    font-size: 13px;
    max-width: 800px;
}
.proof-panel {
    border-radius: 36px;
    border: 1px solid #dfe7e2;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
    margin-top: 50px;
}
.proof-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    border-bottom: 1px solid #dfe7e2;
}
.proof-top strong {
    font-size: 15px;
}
.illustrative {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.2px;
    color: #895e13;
    background: #fff4d8;
    border-radius: 999px;
    padding: 8px 10px;
}
.proof-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}
.proof-chart {
    padding: 30px;
    border-right: 1px solid #dfe7e2;
}
.proof-chart-box {
    height: 265px;
    position: relative;
    border-radius: 20px;
    background: #f6f9f7;
    overflow: hidden;
}
.proof-chart-box svg {
    position: absolute;
    inset: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
}
.proof-stats {
    padding: 30px;
    display: grid;
    gap: 12px;
}
.proof-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dfe7e2;
    padding: 13px 0;
    font-size: 13px;
}
.proof-stat span {
    color: var(--muted);
}
.proof-stat strong {
    font-size: 13px;
}
.proof-caption {
    padding: 18px 26px;
    border-top: 1px solid #dfe7e2;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}
.architect {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 70px;
    align-items: center;
}
.portrait {
    position: relative;
}
.portrait img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: top;
    border-radius: 34px;
    display: block;
    filter: saturate(0.9);
}
.portrait-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    border-radius: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
}
.portrait-badge strong {
    display: block;
    margin-bottom: 4px;
}
.portrait-badge span {
    color: var(--muted);
    font-size: 12px;
}
.faq {
    max-width: 900px;
    margin: 50px auto 0;
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-question {
    width: 100%;
    padding: 25px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
}
.faq-plus {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--mist);
    display: grid;
    place-items: center;
    transition: 0.25s;
    flex: 0 0 auto;
}
.faq-item.open .faq-plus {
    transform: rotate(45deg);
    background: var(--green);
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
}
.faq-answer > div {
    overflow: hidden;
}
.faq-answer p {
    padding: 0 60px 0 4px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    padding-left: 15px;
  font-size: 20px;
}
.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}
.faq-item.open .faq-answer p:last-child {
    padding-bottom: 25px;
}
.cta-section {
    padding: 110px 0;
    background-color: var(--wp--preset--color--background-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}
/* .cta-section:after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(132, 220, 77, 0.16);
    right: -200px;
    top: -300px;
} */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 65px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.cta-section .lead {
    color: #c6d7cc;
}
.cta-section h2,
.cta-section p,
.cta-section span:not(.eyebrow) {
  color: #fff;
}
.signup {
    background: #fff;
    color: var(--ink);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}
.field {
    margin-bottom: 14px;
}
.field label {
    font-size: 12px;
    font-weight: 800;
    display: block;
    margin-bottom: 7px;
}
.field input,
.field select {
    width: 100%;
    height: 50px;
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 0 14px;
    background: #fbfcfb;
    color: var(--ink);
    outline: none;
}
.field input:focus,
.field select:focus {
    border-color: #75c94a;
    box-shadow: 0 0 0 4px rgba(132, 220, 77, 0.15);
}
.form-note {
    font-size: 11px;
    line-height: 1.55;
    color: var(--muted);
    margin-top: 12px;
}
.success {
    display: none;
    padding: 17px;
    border-radius: 14px;
    background: #ebf9e4;
    color: #245b2d;
    font-weight: 750;
    line-height: 1.5;
}
.success.show {
    display: block;
}
footer {
    padding: 50px 0 28px;
    /* border-top: 1px solid var(--line); */
    background: #fff;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
}
.footer-risk {
    font-size: 11px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 760px;
    margin: 22px 0 0;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
}
.footer-links a:hover {
    color: var(--green-dark);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 12px;
    color: var(--muted);
}
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: none;
}
.editor-bar {
    position: fixed;
    z-index: 3000;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 7px;
    padding: 8px;
    background: rgba(16, 32, 25, 0.94);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}
.editor-bar button {
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}
.editor-bar button:hover {
    background: rgba(255, 255, 255, 0.18);
}
.editor-bar .edit-active {
    background: var(--green);
    color: var(--ink);
}
body.copy-editing [data-copy] {
    outline: 2px dashed rgba(67, 160, 56, 0.65);
    outline-offset: 4px;
    cursor: text;
    border-radius: 4px;
}
body.copy-editing a[data-copy] {
    pointer-events: none;
}
.editor-toast {
    position: fixed;
    z-index: 3001;
    right: 20px;
    bottom: 85px;
    padding: 11px 15px;
    border-radius: 12px;
    background: #102019;
    color: white;
    font-size: 12px;
    font-weight: 750;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: 0.2s;
}
.editor-toast.show {
    opacity: 1;
    transform: none;
}
.legal-hero {
    padding: 150px 0 70px;
}
.legal-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    padding: 70px 0;
}
.legal-nav {
    position: sticky;
    top: 130px;
    align-self: start;
    display: grid;
    gap: 9px;
}
.legal-nav a {
    padding: 11px 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 750;
}
.legal-nav a:hover {
    background: var(--mist);
}
.legal-content section {
    padding-bottom: 65px;
    margin-bottom: 65px;
    border-bottom: 1px solid var(--line);
}
.legal-content h2 {
    font-size: 42px;
    letter-spacing: -2px;
}
.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
}
.legal-content p,
.legal-content li {
    font-size: 15px;
    line-height: 1.75;
    color: #536159;
}
.legal-content ul {
    padding-left: 22px;
}
.notice {
    padding: 18px;
    border: 1px solid #f0dca6;
    background: #fff8e7;
    border-radius: 15px;
    font-size: 13px;
    color: #705217;
    line-height: 1.6;
}

@media (max-width: 1224px) {
    .nav-links {
        display: none;
    }
    .menu-btn {
        display: block;
    }
    .nav-cta {
        display: none;
    }
    .nav-links.open {
        display: flex;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 79px;
        background: var(--wp--preset--color--background-dark);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-soft);
        z-index: 10;
    }
    #product{
        padding-top: 150px;
    }
}
@media (max-width: 1050px) {

    .hero-grid,
    .split,
    .architect,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        padding-top: 150px;
    }
    .hero-grid {
        gap: 35px;
    }
    .device-scene {
        min-height: 600px;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .proof-grid {
        grid-template-columns: 1fr;
    }
    .proof-chart {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-item:nth-child(2) {
        border-right: 0;
    }
    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }
    .legal-wrap {
        grid-template-columns: 1fr;
    }
    .legal-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
    }
}
@media (max-width: 720px) {
    .container {
        width: min(100% - 30px, var(--max));
    }
    .nav {
        height: 68px;
    }
    .hero {
        min-height: auto;
        /* padding: 115px 0 70px; */
    }
    .hero-grid {
        gap: 10px;
    }
    h1 {
        font-size: 50px;
        letter-spacing: -3.5px;
    }
    h2 {
        font-size: 40px;
        letter-spacing: -2.3px;
    }
    .hero-kicker {
        font-size: 20px;
    }
    .lead {
        font-size: 17px;
    }
    .device-scene {
        min-height: 500px;
        margin-top: 20px;
    }
    .device {
        transform: none;
        border-width: 6px;
        border-radius: 30px;
    }
    .screen {
        min-height: 440px;
    }
    .floating {
        display: none;
    }
    .metrics {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line) !important;
    }
    .trust-item:last-child {
        border-bottom: 0 !important;
    }
    .section {
        padding: 85px 0;
    }
    .section-sm {
        padding: 70px 0;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .flow-arrow {
        display: none;
    }
    .split {
        gap: 45px;
    }
    .controls {
        grid-template-columns: 1fr;
    }
    .control-wide {
        grid-column: auto;
    }
    .tech-flow {
        grid-template-columns: 1fr;
    }
    .proof-chart-box {
        height: 210px;
    }
    .architect {
        gap: 38px;
    }
    .cta-grid {
        gap: 35px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
    }
    .editor-bar {
        left: 10px;
        right: 10px;
        overflow-x: auto;
        justify-content: flex-start;
    }
    .legal-hero {
        padding-top: 120px;
    }
    .legal-content h2 {
        font-size: 35px;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}

.block-accent {
    display: block;
}
.hero-collab {
    position: absolute;
    left: 50%;
    bottom: -16px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px 18px;
    box-shadow: var(--shadow-soft);
    min-width: 235px;
}
.hero-collab-label {
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--muted);
}
.xm-logo-lockup,
.xm-heading-lockup {
    display: flex;
    justify-content: center;
    align-items: center;
}
.xm-logo-lockup img {
    height: 34px;
    width: auto;
    display: block;
}
.xm-heading-lockup {
    margin: 0 auto 16px;
}
.xm-heading-lockup img {
    height: 54px;
    width: auto;
    display: block;
}
.partner-intro .lead {
    max-width: 760px;
}
.partner-grid .card {
    height: 100%;
}
.partner-grid .card p {
    font-size: 15px;
}
@media (max-width: 1050px) {
    .hero-collab {
        position: static;
        transform: none;
        margin-top: 24px;
    }
}
@media (max-width: 720px) {
    .hero-collab {
        min-width: auto;
        width: min(100%, 320px);
    }
    .xm-heading-lockup img {
        height: 42px;
    }
}

/* XM partnership card polish */
#xm-partnership .partner-layout-polished {
    grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
    align-items: center;
}
#xm-partnership .partner-visual-card-polished {
    min-height: 560px;
    padding: 48px;
    justify-content: flex-start;
    gap: 34px;
}
#xm-partnership .partner-visual-top {
    position: relative;
    z-index: 2;
}
#xm-partnership .partner-visual-label {
    margin-bottom: 18px;
}
#xm-partnership .xm-main-logo {
    width: min(470px, 92%);
    max-height: 165px;
    object-fit: contain;
    object-position: left center;
}
#xm-partnership .partner-proof-strip-polished {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}
#xm-partnership .partner-proof-polished {
    min-height: 178px;
    padding: 18px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
#xm-partnership .partner-proof-polished strong {
    display: block;
    margin: 0 0 10px;
    color: #fff;
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 850;
    text-wrap: balance;
}
#xm-partnership .partner-proof-polished span {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.45;
}
#xm-partnership .partner-note-polished {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    line-height: 1.5;
}
#xm-partnership .partner-visual-card-polished::after {
    right: -20%;
    bottom: -26%;
    width: 58%;
}
body.copy-editing #xm-partnership [data-copy] {
    outline-color: rgba(132, 220, 77, 0.9);
}
@media (max-width: 1050px) {
    #xm-partnership .partner-layout-polished {
        grid-template-columns: 1fr;
    }
    #xm-partnership .partner-visual-card-polished {
        min-height: auto;
    }
}
@media (max-width: 720px) {
    #xm-partnership .partner-visual-card-polished {
        padding: 30px 22px;
        border-radius: 28px;
    }
    #xm-partnership .partner-proof-strip-polished {
        grid-template-columns: 1fr;
    }
    #xm-partnership .partner-proof-polished {
        min-height: auto;
    }
    #xm-partnership .xm-main-logo {
        width: 100%;
    }
}

/* Final XM section fix — keep text visible and avoid old editor cache conflicts */
#xm-partnership .partner-visual-card-polished {
    min-height: 560px !important;
    padding: 48px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 34px !important;
}

#xm-partnership .partner-proof-strip-polished {
    position: relative !important;
    z-index: 3 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    margin-top: 8px !important;
}

#xm-partnership .partner-proof-polished {
    min-height: 178px !important;
    padding: 18px 16px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    overflow: visible !important;
}

#xm-partnership .partner-proof-polished strong,
#xm-partnership .partner-proof-polished span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    overflow: visible !important;
    text-indent: 0 !important;
}

#xm-partnership .partner-proof-polished strong {
    margin: 0 0 10px !important;
    color: #fff !important;
    background: transparent !important;
    font-size: 18px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.04em !important;
    font-weight: 850 !important;
}

#xm-partnership .partner-proof-polished span {
    margin: 0 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    background: transparent !important;
    font-size: 13px !important;
    line-height: 1.45 !important;
    font-weight: 500 !important;
}

#xm-partnership .partner-note-polished {
    position: relative !important;
    z-index: 3 !important;
    margin: 0 !important;
    max-width: 680px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    background: transparent !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#xm-partnership .xm-main-logo {
    width: min(470px, 92%) !important;
    max-height: 165px !important;
    object-fit: contain !important;
    object-position: left center !important;
}

@media (max-width: 720px) {
    #xm-partnership .partner-proof-strip-polished {
        grid-template-columns: 1fr !important;
    }
    #xm-partnership .partner-proof-polished {
        min-height: auto !important;
    }
}

/* Pricing section — replaces oversized XM promotion */
.pricing-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.96fr 0.96fr;
    gap: 27px;
    margin-top: 50px;
    align-items: stretch;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 40px 35px;
    border: 4px solid var(--green);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 25px rgba(20, 56, 35, 0.035);
}
.pricing-card-featured {
    border-color: rgba(132, 220, 77, 0.55);
    box-shadow: 0 22px 60px rgba(48, 110, 48, 0.1);
    position: relative;
    overflow: hidden;
}
.pricing-topline {
    position: relative;
    z-index: 1;
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    padding: 8px 11px;
    border-radius: 999px;
    background: #BEAEF9;
    color: var(--wp--preset--color--background-dark);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}
.pricing-price {
    position: relative;
    z-index: 1;
    font-size: clamp(60px, 5vw, 80px);
    line-height: 0.9;
    letter-spacing: -0.06em;
    font-weight: 900;
    color: var(--ink);
}
.pricing-price span {
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--muted);
    font-weight: 750;
    margin-left: 5px;
}
.pricing-card p {
    position: relative;
    z-index: 1;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}
.pricing-card ul {
    position: relative;
    z-index: 1;
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 10px 0 8px;
}
.pricing-card li {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.35;
    display: flex;
    gap: 9px;
}
.pricing-card .btn {
    margin-top: auto;
    width: 100%;
}
.pricing-note {
    max-width: 820px;
    margin: 24px auto 0;
    color: var(--muted);

    font-size: 14px;
    line-height: 18px;
    padding-top: 60px;
}
@media (max-width: 1050px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* XM logo inside the pricing section */
.pricing-xm-logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 34px;
    margin-bottom: 2px;
}
.pricing-xm-logo-wrap img {
    display: block;
    width: auto;
    height: 28px;
    max-width: 118px;
    object-fit: contain;
}
@media (max-width: 720px) {
    .pricing-xm-logo-wrap {
        height: 32px;
    }
    .pricing-xm-logo-wrap img {
        height: 26px;
    }
}

/* Replace text-only Free with XM badge with XM logo badge */
.pricing-xm-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    min-height: 44px;
}
.pricing-xm-badge img {
    display: block;
    width: auto;
    height: 24px;
    max-width: 92px;
    object-fit: contain;
}
.pricing-xm-badge span {
    line-height: 1;
    white-space: nowrap;
}
@media (max-width: 720px) {
    .pricing-xm-badge {
        gap: 8px;
        padding: 8px 14px;
    }
    .pricing-xm-badge img {
        height: 22px;
    }
}

/* Corrected Free with XM badge: text says Free with, logo says XM */
.pricing-xm-badge {
    gap: 9px !important;
    padding: 13px 17px !important;
    min-height: 42px !important;
}
.pricing-xm-badge span {
    white-space: nowrap !important;
}
.pricing-xm-badge img {
    height: 22px !important;
    width: auto !important;
    max-width: 78px !important;
    object-fit: contain !important;
}
@media (max-width: 720px) {
    .pricing-xm-badge img {
        height: 20px !important;
    }
}

:root {
    --xm-dark: #070a0d;
    --xm-card-border: rgba(8, 18, 24, 0.1);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.logo {
    display: inline-flex;
    align-items: center;
}

.brand-logo-img {
    display: block;
    width: auto;
    height: 30px;
}

.nav .brand-logo-img {
    height: 28px;
}

footer .brand-logo-img {
    height: 30px;
    filter: invert(1);
}

.screen-brand-logo {
    height: 18px;
    width: auto;
    display: block;
    filter: invert(1);
    opacity: 0.92;
}

.hero-collab {
    margin: 24px auto 0;
    width: fit-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 14px;
    border: 1px solid rgba(10, 20, 20, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 40px rgba(10, 20, 20, 0.08);
    backdrop-filter: blur(12px);
}

.hero-collab-label {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.62;
    white-space: nowrap;
}

.hero-xm-logo,
.xm-logo-lockup img {
    display: block;
    width: auto;
    max-height: 28px;
    max-width: 110px;
    object-fit: contain;
}

#xm-partnership {
    position: relative;
    overflow: hidden;
}

#xm-partnership::before {
    content: "";
    position: absolute;
    inset: 8% -10% auto auto;
    width: min(420px, 42vw);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(
        circle,
        rgba(132, 220, 77, 0.22),
        rgba(132, 220, 77, 0) 68%
    );
    pointer-events: none;
}

.partner-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
}

#xm-partnership .partner-intro {
    text-align: left;
    margin: 0;
}

#xm-partnership .partner-intro .lead {
    max-width: 620px;
}

.partner-visual-card {
    position: relative;
    min-height: 430px;
    border-radius: 34px;
    padding: clamp(28px, 4vw, 46px);
    background: radial-gradient(
            circle at 14% 12%,
            rgba(132, 220, 77, 0.18),
            transparent 30%
        ),
        linear-gradient(145deg, #0b1014 0%, #050708 100%);
    color: #fff;
    box-shadow: 0 28px 90px rgba(5, 10, 12, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.partner-visual-card::after {
    content: "";
    position: absolute;
    right: -18%;
    bottom: -24%;
    width: 62%;
    aspect-ratio: 1;
    border-radius: 999px;
    border: 1px solid rgba(132, 220, 77, 0.2);
    box-shadow: inset 0 0 80px rgba(132, 220, 77, 0.05);
    pointer-events: none;
}

.partner-visual-top {
    position: relative;
    z-index: 1;
}

.partner-visual-label {
    display: block;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    opacity: 0.58;
}

.xm-main-logo {
    display: block;
    width: min(430px, 78%);
    max-height: 150px;
    object-fit: contain;
    object-position: left center;
}

.partner-visual-line {
    position: relative;
    z-index: 1;
    margin: 28px 0 0;
    max-width: 470px;
    font-size: clamp(24px, 3vw, 42px);
    line-height: 0.98;
    letter-spacing: -0.05em;
    font-weight: 800;
}

.partner-proof-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.partner-proof {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.partner-proof strong {
    display: block;
    font-size: 20px;
    line-height: 1.05;
}

.partner-proof span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.25;
    opacity: 0.68;
}

.partner-note {
    position: relative;
    z-index: 1;
    margin: 18px 0 0;
    font-size: 12px;
    line-height: 1.45;
    opacity: 0.56;
}

.partner-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.partner-list-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--xm-card-border);
}

.partner-list-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: rgba(132, 220, 77, 0.16);
    color: #1d4e1d;
}

.partner-list-item h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.partner-list-item p {
    margin: 0;
    opacity: 0.72;
}

@media (max-width: 900px) {
    .partner-layout {
        grid-template-columns: 1fr;
    }

    .partner-visual-card {
        min-height: auto;
    }
}

@media (max-width: 560px) {
    .brand-logo-img,
    .nav .brand-logo-img {
        height: 24px;
    }

    .hero-collab {
        width: 100%;
        justify-content: space-between;
        border-radius: 18px;
    }

    .partner-proof-strip {
        grid-template-columns: 1fr;
    }
}

.block-accent {
    display: block;
}

.brand-logo-img {
    height: 30px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav .brand-logo-img {
    height: 28px;
}

footer .brand-logo-img {
    height: 30px;
    filter: none !important;
}

.screen-brand-logo {
    height: 18px;
    width: auto;
    display: block;
    filter: none !important;
    opacity: 0.96;
    object-fit: contain;
}

.hero-xm-logo {
    height: 28px;
    width: auto;
    max-width: 124px;
    object-fit: contain;
    display: block;
}

.xm-main-logo {
    width: min(430px, 78%);
    max-height: 150px;
    object-fit: contain;
    object-position: left center;
    display: block;
}

.hero-collab {
    gap: 12px;
}

.hero-collab-label {
    white-space: nowrap;
}

@media (max-width: 560px) {
    .brand-logo-img,
    .nav .brand-logo-img {
        height: 24px;
    }

    .hero-xm-logo {
        height: 24px;
    }
}

#xm-partnership {
    background: linear-gradient(180deg, #f5faf4 0%, #eef6ed 100%);
}

#xm-partnership .partner-layout-polished {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
    gap: clamp(42px, 6vw, 78px);
}

#xm-partnership .partner-intro {
    max-width: 560px;
}

#xm-partnership .partner-intro h2 {
    font-size: clamp(50px, 5vw, 76px);
    line-height: 0.94;
    letter-spacing: -0.065em;
    margin-bottom: 24px;
}

#xm-partnership .partner-intro .lead {
    font-size: 22px;
    line-height: 1.45;
    margin-bottom: 8px;
    color: #42524a;
}

#xm-partnership .partner-intro .body {
    font-size: 19px;
    line-height: 1.62;
    color: #42524a;
    max-width: 560px;
}

.partner-visual-polished {
    min-height: 560px;
    padding: clamp(34px, 4vw, 48px);
    justify-content: flex-start;
    background: radial-gradient(
            circle at 8% 5%,
            rgba(132, 220, 77, 0.18),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 92%,
            rgba(132, 220, 77, 0.1),
            transparent 34%
        ),
        linear-gradient(145deg, #0d1515 0%, #050708 100%);
}

.partner-visual-polished .partner-visual-top {
    margin-bottom: clamp(44px, 5vw, 72px);
}

.partner-visual-polished .partner-visual-label {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.62);
    opacity: 1;
}

.partner-visual-polished .xm-main-logo {
    width: min(440px, 92%);
    max-height: 160px;
}

.partner-proof-strip-polished {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 0;
}

.partner-proof-strip-polished .partner-proof {
    min-height: 150px;
    padding: 16px 15px;
    background: rgba(255, 255, 255, 0.085);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.partner-proof-strip-polished .partner-proof strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    background: transparent !important;
}

.partner-proof-strip-polished .partner-proof span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.35;
    background: transparent !important;
}

.partner-visual-polished .partner-note {
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.48);
    opacity: 1;
    max-width: 620px;
    background: transparent !important;
}

body.copy-editing .partner-proof [data-copy],
body.copy-editing .partner-visual-polished [data-copy] {
    outline-color: rgba(132, 220, 77, 0.9);
}

@media (max-width: 1050px) {
    #xm-partnership .partner-layout-polished {
        grid-template-columns: 1fr;
    }

    .partner-visual-polished {
        min-height: auto;
    }

    .partner-proof-strip-polished {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    #xm-partnership .partner-intro h2 {
        font-size: 44px;
    }

    .partner-proof-strip-polished {
        grid-template-columns: 1fr;
    }

    .partner-visual-polished .xm-main-logo {
        width: min(100%, 340px);
    }
}

header {
  padding: 25px;
}

.section-mist.section-mist-mt5 article .card-icon,
.section-mist.section-mist-mt5 article h3,
.section-mist.section-mist-mt5 article h4,
.section-mist.section-mist-mt5 article p {
  z-index: 2;
  position: relative;
  color: #fff;
}

.section-mist.section-mist-mt5 article .card-icon {
  color: var(--wp--preset--color--background-dark);
}

.section-mist.section-mist-mt5 article h4 {
  margin-top: 0;
  margin-bottom: 10px !important;
}

header .btn.btn-primary.btn-sm.nav-cta {
  line-height: 30px;
  font-size: 19px;
  color: var(--wp--preset--color--ink);
  padding: 18px 35px;
  margin: 0;
  text-align:center;
}

.section-mist.section-mist-mt5 article h4 {
  margin-top: 0;
  margin-bottom: 10px !important;
}


.section-mist-mt5 .card{
  position: relative;
  overflow: hidden;
  background: #050505; /* solid base */
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 16px 36px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.08);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* grayish glass layer */
.section-mist-mt5 .card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    145deg,
    rgba(190,190,190,.18) 0%,
    rgba(140,140,140,.10) 35%,
    rgba(90,90,90,.12) 100%
  );
  backdrop-filter: blur(12px) saturate(110%);
  -webkit-backdrop-filter: blur(12px) saturate(110%);
  pointer-events:none;
}

/* optional center glow for extra glass feel */
.section-mist-mt5 .card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(255,255,255,.16) 0%,
    rgba(255,255,255,.06) 35%,
    rgba(255,255,255,0) 70%
  );
  pointer-events:none;
}

.section-mist-mt5 .card h4{ color:#fff; }
.section-mist-mt5 .card p{ color:rgba(255,255,255,.78); }

.section-mist-mt5 .grid-4 {
  margin: 25px 0;
  gap: 25px;
}

.section-mist-design h2,
.section-mist-design p {
  color: #fff !important;
}

.section-mist-mt5 .grid-4 h2 {
    font-size: 16px;
}

.section-mist-mt5 .grid-4 p {
    font-size: 14px;
}

.section-mist-design .grid-4 {
    gap: 65px;
}

.section-mist-design .card {
    padding: 40px 25px 25px;
    justify-content: start;
}
.section-mist-how .card {
  border: none;
  box-shadow: none;
  position: relative;
  padding-bottom: 62px;

  padding-right: 36px;
  padding-left: 36px;

}

.section-mist-how .card.card-1 {
    background: #E4FFF7;
}

.section-mist-how .card.card-2 {
    background: #D5FAED;
}

.section-mist-how .card.card-3 {
    background: #ABF5DE;
}

.section-mist-how .card.card-4 {
    background: #6AEAB9;
}

.section-mist-how .card p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 19px;
}

.section-mist-how .card .step-meta{
  color: var(--wp--preset--color--background-dark);
  font-size:18px;
  line-height:24px;
  position: absolute;
  bottom: 0;
  padding-bottom: 40px;
}

.section-mist-how .card h3 {
  font-size: 25px;
  line-height: 30px;
  margin: 19px 0;
}

.card-icon.edmamme-arrow-icon, .card-icon.edmamme-circle-icon {
  font-size: 25px;
}

.section-mist-how .grid-4 {
  gap: 28px;
}

.pricing-card p {
  color: var(--muted) !important;
  font-size: 16px;
  line-height: 30px;
  padding-right: 50px;
}

#controls p.lead {
    font-size: 24px;
}

#controls p.body {
    font-size: 22px;
}

.section-mist-video {
    background-image: url("/wp-content/themes/edamame/assets/images/background.jpg");
    background-color: #050505;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding-top: 160px;
    padding-bottom: 130px;
}

.section-mist-video h2, .section-mist-video p {
    color: #fff;
}

.section-mist-video p {
    font-size: 17px;
}

.video-card .plyr {
    border-radius: 25px;
}

.plyr__control--overlaid {
    background: var(--wp--preset--color--background-dark);
}

.plyr--full-ui input[type="range"] {
    color: var(--wp--preset--color--background-dark);
}

.plyr.is-poster-hidden .plyr__poster {
    opacity: 0 !important;
    visibility: hidden;
    pointer-events: none;
}

#waitlist {
    /* background-image: url("/wp-content/uploads/2026/07/image_1920x827.png"); */
    background-color: #050505;
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
}

.strat-img {
  padding-top: 40px;
}

.legal-hero h1,
.legal-hero p {
  color: #fff;
}

.card-icon.edamame-arrow-icon,
.card-icon.edamame-circle-icon {
  font-size: 25px;
}

@media (max-width: 1050px) {
    #waitlist,
    .section-mist-video {
        background-image: none;
    }

    #product .wp-block-image {
        display: flex;
        justify-content: center;
    }

    #product .wp-block-image img {
        height: auto;
        width: 65%;
    }
}

.legal-content a {
    color: var(--ink);
    text-decoration: underline;
}
.legal-content a:hover {
    color: var(--green);
}


@media (max-width: 720px) {
    .nav-links.open {
        padding:24px 39px;
    }
}

@media (max-width: 1050px) {
    #product .wp-block-image {
        display: none;
    }
}

.floating-btn {
  position: sticky;
  bottom: 20px;
  left: calc(100% - 40px);
  background: none;
  border: none;
  padding: 0 20px;
  display: none;
  z-index: 10;
}

.floating-btn.show {
    display: none;
}

@media (max-width: 1224px) {
    .floating-btn.show {
        display: block;
    }
}

#player {
    max-width: 100%;
}

/* register form start */

.shortcode-register-wrapper {
    border: 1px solid #707070;
    border-radius: 24px;
    margin-top: 56px !important;
    margin-bottom: 32px !important;
    text-align: center;
    padding: 80px 50px !important;
    background-color: #000000;
    width: 100%;
    max-width: 661px !important;
}

.shortcode-register-wrapper img {
    margin-bottom: 15px;
}

.shortcode-register-wrapper h1 {
    font: normal normal normal 45px/62px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
}

.shortcode-register-wrapper p {
    font: normal normal normal 20px/30px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    color: #BCBCBC;
    opacity: 1;
    margin: 0 auto;
    width: 100%;
    max-width: 334px;
}


.shortcode-register-wrapper form {
    margin-top: 40px;
    text-align: left;
}

.shortcode-register-wrapper form label {
    font: normal normal normal 18px/30px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 0;
}

.shortcode-register-wrapper form input, .shortcode-register-wrapper form select {
    background-color: black;
    font: normal normal normal 18px/30px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    color: #fff;
    border: 0;
    padding-left: 0;
    border-bottom: 1px solid #7B7B7B;
    width: 100%;
    margin-bottom: 20px;
}

.shortcode-register-wrapper form select option:disabled {
    color: #7B7B7B;
}

.shortcode-register-wrapper form select  {
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
}

.shortcode-register-wrapper form input[type="radio"] {
    width: 20px;
    margin-bottom: 20px;
}

.shortcode-register-wrapper form .error input {
    margin-bottom: 5px;
    color: #FB6B5B;
    border-bottom: 1px solid #FB6B5B;
}

.shortcode-register-wrapper form div {
    position: relative;
}

.shortcode-register-wrapper form div img {
    position: absolute;
    right: 5px;
    top: 30px;
    display: none;
    margin:0;
}

.shortcode-register-wrapper form div.error img {
    display: block;
}

.shortcode-register-wrapper form span {
    font: normal normal normal 14px/14px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    color: #FB6B5B !important;
    display: none;
}

.shortcode-register-wrapper form .error span:not(.exists) {
    display: inline;
}

input::placeholder,
.shortcode-register-wrapper form select::invalid  {
    color: #7B7B7B;
    opacity: 1;
}

input:focus {
    outline: none;
    border-color: transparent;
    border: none;
    border-bottom: 1px solid #7B7B7B;
}

.submit-button {
    width: 100%;
    height: fit-content;
    min-height: 65px;
    display: block;
    background: #1FDBA6 0% 0% no-repeat padding-box;
    border-radius: 38px;
    text-align: center;
    font: normal normal 600 22px/30px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    color: #000000 !important;
    padding: 17px 0;
    margin: 50px auto 15px;
}

.submit-button:link,
.submit-button:visited,
.submit-button:hover,
.submit-buttona:active,
.await-verify .footer-link a:link,
.await-verify .footer-link a:visited,
.await-verify .footer-link a:hover,
.await-verify .footer-link a:active {
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
}

.shortcode-register-wrapper p.agree {
    font: normal normal normal 14px/20px Manrope, ui-sans-serif, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Helvetica, Arial, sans-serif;
    letter-spacing: 0px;
    color: #BCBCBC;
    width: 100%;
    text-align: center;
}

.shortcode-register-wrapper input[type="radio"] {
    accent-color: var(--green);
}

.hide {
    display: none;
}

.edamame-register-form a,
.faq-answer a {
    text-decoration: underline;
}

.edamame-register-form a:hover,
.faq-answer a:hover {
    color: var(--green);
}

/* register form end */


.section-mist-video {
  position: relative;
  overflow: hidden;
}

.section-mist-video::before,
.section-mist-video::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px; /* Adjust gradient height */
  pointer-events: none;
  z-index: 1;
}

.section-mist-video::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.8), transparent);
}

.section-mist-video::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.8), transparent);
}



.architect-video-only {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.video-card-large {
    height: 100%;
}

.video-card-large video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover; /* or contain */
}

.architect-video-only > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 1050px) {
    .architect-video-only {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .video-card-large video {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    .section-mist-video {
        background-image: url("/wp-content/themes/edamame/assets/images/background-mobile.jpg");
    }
    .shortcode-register-wrapper h1 {
        font-size: 40px;
        letter-spacing: -2.3px;
        line-height: 1.01;
    }
    .shortcode-register-wrapper p {
        font-size:17px;
        line-height: 1.55;
    }
    .shortcode-register-wrapper form input[type="radio"] {
        margin-bottom: 0;
    }
    .shortcode-register-wrapper form label.for-radio {
        margin-bottom: 10px;
    }
    .shortcode-register-wrapper form .js-account-details {
        margin-top: 10px;
    }
    .shortcode-register-wrapper {
        padding: 80px 25px !important;
    }
    .shortcode-register-wrapper .submit-button {
        margin-top: 25px !important;
    }
    .shortcode-register-wrapper form label,
    .shortcode-register-wrapper form input {
        font-size: 17px;
    }

}

#pricing {
    padding-bottom: 30px;
}

.faq-answer li {
  color: var(--muted);
  font-size: 20px;
}