:root {
    --wp2-ink: #080b0d;
    --wp2-ink-soft: #111518;
    --wp2-warm: #fbfaf6;
    --wp2-paper: #fffefa;
    --wp2-green: #31b94f;
    --wp2-green-dark: #11752b;
    --wp2-green-soft: #edf5e9;
    --wp2-text: #0a0d0f;
    --wp2-muted: #626a73;
    --wp2-line: #dcdedb;
    --wp2-line-dark: #2a3034;
    --wp2-content: 1320px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

html.seo-landing.seo-landing--integration body.wp2-page {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--wp2-text);
    background: var(--wp2-warm) !important;
    font-family: "DM Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.wp2-page *,
.wp2-page *::before,
.wp2-page *::after {
    box-sizing: border-box;
}

.wp2-page :where(h1, h2, h3, p, ul) {
    margin-top: 0;
}

.wp2-page :where(a) {
    color: inherit;
    text-decoration: none;
}

.wp2-page :where(button, summary) {
    font: inherit;
}

.wp2-page :where(img) {
    display: block;
    max-width: 100%;
}

.wp2-page [hidden] {
    display: none !important;
}

.wp2-page :where(a, button, summary):focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px #0a0d0f;
}

.wp2-skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    border-radius: 5px;
    color: var(--wp2-ink) !important;
    background: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transform: translateY(-160%);
}

.wp2-skip-link:focus {
    transform: none;
}

/* Header */
.wp2-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: 90px;
    color: #ffffff;
    background: var(--wp2-ink);
    border-bottom: 1px solid #202529;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.wp2-nav {
    width: min(100%, 1510px);
    height: 100%;
    margin-inline: auto;
    padding-inline: 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.wp2-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.wp2-brand-mark {
    width: 43px;
    height: 43px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: var(--wp2-ink);
    background: var(--wp2-green);
    font-size: 23px;
}

.wp2-brand-copy {
    display: grid;
    line-height: 1;
}

.wp2-brand-copy strong {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.045em !important;
}

.wp2-brand-copy small {
    margin-top: 5px;
    color: #aeb5ba;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
}

.wp2-desktop-nav {
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: clamp(19px, 2.6vw, 42px);
}

.wp2-desktop-nav a,
.wp2-signin {
    color: #eef1f2;
    font-size: 14px;
    font-weight: 500;
    transition: color 160ms ease;
}

.wp2-desktop-nav a:hover,
.wp2-signin:hover {
    color: #8fe8a1;
}

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

.wp2-nav-cta {
    min-height: 46px;
    padding-inline: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--wp2-ink) !important;
    background: var(--wp2-green);
    font-size: 14px;
    font-weight: 700;
    transition: background-color 160ms ease, transform 160ms ease;
}

.wp2-nav-cta:hover {
    background: #40cc5e;
    transform: translateY(-1px);
}

.wp2-mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
}

.wp2-mobile-menu > summary {
    width: 44px;
    height: 44px;
    border: 1px solid #333b40;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: #171c1f;
    cursor: pointer;
    list-style: none;
}

.wp2-mobile-menu > summary::-webkit-details-marker {
    display: none;
}

.wp2-mobile-panel {
    position: absolute;
    z-index: 10;
    top: 55px;
    right: 0;
    width: min(340px, calc(100vw - 28px));
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    padding: 14px;
    overflow-y: auto;
    overscroll-behavior: contain;
    color: #ffffff;
    background: var(--wp2-ink);
    border: 1px solid #30383d;
    border-radius: 9px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.wp2-mobile-panel > a {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #23292c;
    color: #e3e7e8;
    font-size: 14px;
}

.wp2-mobile-panel > div {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.wp2-mobile-panel > div a {
    min-height: 46px;
    border: 1px solid #343c41;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.wp2-mobile-panel > div a:last-child {
    color: var(--wp2-ink);
    background: var(--wp2-green);
    border-color: var(--wp2-green);
    font-weight: 700;
}

/* Hero */
.wp2-hero {
    color: var(--wp2-text);
    background: var(--wp2-warm);
    border-bottom: 1px solid var(--wp2-line);
}

.wp2-hero-inner {
    width: min(100%, 1510px);
    min-height: 700px;
    margin-inline: auto;
    padding: 76px 64px 48px;
    display: grid;
    grid-template-columns: 500px minmax(0, 1fr);
    align-items: center;
    gap: 50px;
}

.wp2-hero-copy {
    max-width: 590px;
}

.wp2-eyebrow,
.wp2-label {
    margin-bottom: 24px;
    color: var(--wp2-green-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.045em !important;
    text-transform: uppercase;
}

html.seo-landing.seo-landing--integration body.wp2-page .wp2-title {
    max-width: 580px;
    margin: 0;
    color: var(--wp2-text);
    font-family: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(53px, 4.55vw, 69px) !important;
    font-weight: 700;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
}

.wp2-hero-lead {
    max-width: 560px;
    margin: 25px 0 0;
    color: #535b65;
    font-size: 19px;
    line-height: 1.65;
}

.wp2-hero-actions {
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.wp2-button {
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.wp2-button-primary {
    color: var(--wp2-ink) !important;
    background: var(--wp2-green);
    border-color: var(--wp2-green);
    box-shadow: 0 10px 24px rgba(17, 117, 43, 0.18);
}

.wp2-button-primary:hover {
    background: #3dcc5c;
    border-color: #3dcc5c;
}

.wp2-button-secondary {
    color: #2d343a !important;
    background: rgba(255, 255, 255, 0.54);
    border-color: #cfd2d1;
}

.wp2-button-secondary:hover {
    color: var(--wp2-ink) !important;
    background: #ffffff;
    border-color: #9ea5a3;
}

.wp2-disclosure {
    max-width: 500px;
    margin: 18px 0 0;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #686f77;
    font-size: 12px;
    line-height: 1.55;
}

.wp2-disclosure i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #4f5b64;
    font-size: 18px;
}

.wp2-route-proof {
    width: min(100%, 716px);
    min-width: 0;
    justify-self: end;
}

.wp2-route-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wp2-route-card {
    position: relative;
    min-height: 264px;
    padding: 44px 20px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid var(--wp2-line);
}

.wp2-route-card + .wp2-route-card {
    border-left: 0;
}

.wp2-route-card:first-child {
    border-radius: 12px 0 0 12px;
}

.wp2-route-card:last-child {
    border-radius: 0 12px 12px 0;
}

.wp2-route-number {
    position: absolute;
    top: -19px;
    left: 50%;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #17361f;
    background: var(--wp2-warm);
    border: 1.5px solid var(--wp2-green-dark);
    font-size: 15px;
    transform: translateX(-50%);
}

.wp2-route-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 21px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: #17201a;
    background: var(--wp2-green-soft);
    border: 1px solid #cddfc9;
    font-size: 35px;
}

.wp2-route-card h2 {
    margin: 0;
    color: var(--wp2-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em !important;
}

.wp2-route-card p {
    margin: 11px 0 0;
    color: #626a73;
    font-size: 13px;
    line-height: 1.55;
}

.wp2-route-arrow {
    position: absolute;
    z-index: 2;
    top: 115px;
    right: -16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--wp2-green-dark);
    background: var(--wp2-warm);
    border: 1px solid #cde2cc;
    font-size: 12px;
}

.wp2-hero-preview {
    height: 205px;
    margin-top: 34px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #cfd3d1;
    border-radius: 9px;
    box-shadow: 0 16px 50px rgba(10, 17, 12, 0.09);
}

.wp2-preview-bar {
    height: 37px;
    padding-inline: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: #4d555d;
    background: #f5f6f3;
    border-bottom: 1px solid #e1e3df;
    font-size: 10px;
    font-weight: 600;
}

.wp2-preview-bar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.wp2-preview-bar i {
    color: var(--wp2-green);
    font-size: 7px;
}

.wp2-preview-bar small {
    color: #7a8187;
    font-size: 9px;
}

.wp2-preview-button {
    position: relative;
    width: 100%;
    padding: 0;
    display: block;
    overflow: hidden;
    cursor: zoom-in;
    background: #eef0ed;
    border: 0;
}

.wp2-preview-button img {
    width: 100%;
    height: auto;
}

.wp2-preview-button-compact {
    height: 168px;
}

.wp2-preview-button-compact img {
    min-height: 168px;
    object-fit: cover;
    object-position: top left;
}

.wp2-preview-button > span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-height: 32px;
    padding-inline: 11px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    background: rgba(8, 11, 13, 0.9);
    font-size: 10px;
    font-weight: 600;
    opacity: 1;
    transform: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.wp2-preview-button:hover > span,
.wp2-preview-button:focus-visible > span {
    opacity: 1;
    transform: none;
}

/* Requirements rail */
.wp2-requirements {
    background: #ffffff;
    border-bottom: 1px solid var(--wp2-line);
}

.wp2-requirements-inner {
    width: min(100%, var(--wp2-content));
    min-height: 138px;
    margin-inline: auto;
    padding: 28px 42px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wp2-requirement {
    min-width: 0;
    padding-inline: 48px;
    display: flex;
    align-items: center;
    gap: 17px;
    border-right: 1px solid var(--wp2-line);
}

.wp2-requirement:first-child {
    padding-left: 0;
}

.wp2-requirement:last-child {
    padding-right: 0;
    border-right: 0;
}

.wp2-requirement > span:last-child {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.wp2-requirement strong {
    color: var(--wp2-text);
    font-size: 14px;
    font-weight: 700;
}

.wp2-requirement small {
    color: #666e76;
    font-size: 12px;
}

.wp2-requirement-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: var(--wp2-green-dark);
    font-size: 25px;
}

.wp2-requirement-icon-woo {
    color: var(--wp2-green-dark);
    background: #ffffff;
    border: 1px solid #bad9bc;
}

.wp2-requirement-icon-currency {
    color: var(--wp2-green-dark);
    background: transparent;
    border: 2px solid var(--wp2-green-dark);
    font-size: 20px;
}

/* Shared section headings */
.wp2-section-heading,
.wp2-faq-intro {
    max-width: 810px;
    margin-bottom: 48px;
}

.wp2-section-heading h2,
.wp2-faq-intro h2,
.wp2-review h2 {
    margin: 0;
    color: var(--wp2-text);
    font-size: clamp(39px, 4.1vw, 59px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.04em !important;
}

.wp2-section-heading > p:last-child,
.wp2-faq-intro > p:last-child,
.wp2-review > div > p:last-child {
    max-width: 700px;
    margin: 22px 0 0;
    color: #687079;
    font-size: 17px;
    line-height: 1.7;
}

.wp2-section-heading-dark h2 {
    color: #f7f8f7;
}

.wp2-section-heading-dark .wp2-label {
    color: #63d979;
}

.wp2-section-heading-dark > p:last-child {
    color: #9aa1a6;
}

/* Product proof */
.wp2-product,
.wp2-security {
    color: #f7f8f7;
    background: var(--wp2-ink);
}

.wp2-product {
    position: relative;
    padding: 104px max(36px, calc((100vw - var(--wp2-content)) / 2)) 92px;
    border-bottom: 1px solid #24292d;
}

.wp2-product::before {
    position: absolute;
    top: 0;
    left: max(36px, calc((100vw - var(--wp2-content)) / 2));
    width: 230px;
    height: 1px;
    background: var(--wp2-green-dark);
    content: "";
}

.wp2-product-workspace {
    display: grid;
    grid-template-columns: 174px minmax(0, 1fr) 300px;
    align-items: start;
    gap: 22px;
}

.wp2-product-tabs {
    display: grid;
    gap: 3px;
}

.wp2-product-tabs button {
    min-height: 76px;
    padding: 16px 15px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #9ba2a7;
    background: transparent;
    border: 1px solid var(--wp2-line-dark);
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.wp2-product-tabs button span {
    color: #687178;
    font-size: 10px;
}

.wp2-product-tabs button[aria-selected="true"] {
    color: #ffffff;
    background: #172018;
    border-color: #3aa550;
    box-shadow: inset 3px 0 0 #63df7a;
}

.wp2-product-tabs button[aria-selected="true"] span {
    color: #67df7d;
}

.wp2-product-panel {
    min-width: 0;
    overflow: hidden;
    background: #eff0ed;
    border: 1px solid #353b3f;
    border-radius: 9px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.wp2-product-context {
    min-height: 100%;
    padding: 27px 24px;
    background: #0d1310;
    border: 1px solid #253029;
    border-radius: 9px;
}

.wp2-context-index {
    margin: 0 0 26px;
    color: #63df7a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em !important;
    text-transform: uppercase;
}

.wp2-product-context h3 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.04em !important;
}

.wp2-product-context > p:not(.wp2-context-index) {
    margin: 18px 0 0;
    color: #9ba2a7;
    font-size: 13px;
    line-height: 1.65;
}

.wp2-product-context ul {
    margin: 29px 0 0;
    padding: 0;
    display: grid;
    gap: 13px;
    list-style: none;
}

.wp2-product-context li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d6dadd;
    font-size: 12px;
}

.wp2-product-context li i {
    color: #63df7a;
}

.wp2-availability-note {
    max-width: 980px;
    margin: 34px 0 0 216px;
    padding-top: 21px;
    color: #7f878c;
    border-top: 1px solid #262c2f;
    font-size: 11px;
    line-height: 1.65;
}

/* Setup */
.wp2-setup {
    padding: 104px max(36px, calc((100vw - var(--wp2-content)) / 2)) 108px;
    color: var(--wp2-text);
    background: var(--wp2-warm);
}

.wp2-setup-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
    gap: 52px;
    align-items: stretch;
}

.wp2-setup-tabs {
    display: grid;
    border-top: 1px solid #d4d7d4;
}

.wp2-setup-tabs button {
    min-height: 84px;
    padding: 0 20px 0 7px;
    display: grid;
    grid-template-columns: 44px 48px 1fr 28px;
    align-items: center;
    gap: 13px;
    text-align: left;
    color: var(--wp2-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d4d7d4;
    cursor: pointer;
    font-size: 16px;
}

.wp2-setup-tabs button:hover {
    background: #f3f4ef;
}

.wp2-setup-tabs button[aria-selected="true"] {
    color: var(--wp2-green-dark);
    background: #f0f6ed;
}

.wp2-setup-tabs button > span {
    color: #7b8389;
    font-size: 11px;
}

.wp2-setup-tabs button > i:nth-of-type(1) {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #3f494f;
    background: #ffffff;
    border: 1px solid #d8dbd8;
    font-size: 18px;
}

.wp2-setup-tabs button b {
    font-weight: 700;
}

.wp2-setup-tabs button > i:last-child {
    justify-self: end;
    color: #8b9297;
}

.wp2-setup-tabs button[aria-selected="true"] > i {
    color: var(--wp2-green-dark);
}

.wp2-setup-panels {
    min-height: 360px;
}

.wp2-setup-panel {
    min-height: 360px;
    height: 100%;
    padding: 47px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #ffffff;
    background: var(--wp2-ink);
    border-radius: 8px;
}

.wp2-setup-panel-icon {
    width: 67px;
    height: 67px;
    margin-bottom: 33px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: var(--wp2-ink);
    background: var(--wp2-green);
    font-size: 31px;
}

.wp2-setup-panel .wp2-label {
    margin-bottom: 13px;
    color: #62df79;
}

.wp2-setup-panel h3 {
    margin: 0;
    color: #ffffff;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.04em !important;
}

.wp2-setup-panel > p:not(.wp2-label) {
    margin: 18px 0 0;
    color: #a5acb0;
    font-size: 14px;
    line-height: 1.7;
}

.wp2-completion,
.wp2-panel-link {
    margin-top: 26px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #d8ddda;
    border-top: 1px solid #2b3034;
    font-size: 11px;
    line-height: 1.5;
}

.wp2-completion i,
.wp2-panel-link i {
    color: #62df79;
}

.wp2-panel-link {
    color: #ffffff !important;
    font-weight: 700;
}

/* Security */
.wp2-security {
    padding: 104px max(36px, calc((100vw - var(--wp2-content)) / 2)) 108px;
}

.wp2-security-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid var(--wp2-line-dark);
    border-left: 1px solid var(--wp2-line-dark);
}

.wp2-security-grid article {
    position: relative;
    min-height: 260px;
    padding: 42px 31px 34px;
    border-right: 1px solid var(--wp2-line-dark);
    border-bottom: 1px solid var(--wp2-line-dark);
}

.wp2-security-grid article > span {
    position: absolute;
    top: 23px;
    right: 24px;
    color: #535c61;
    font-size: 11px;
}

.wp2-security-grid article > i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #62df79;
    background: #132019;
    border: 1px solid #26372b;
    font-size: 22px;
}

.wp2-security-grid h3 {
    margin: 32px 0 0;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.03em !important;
}

.wp2-security-grid p {
    margin: 13px 0 0;
    color: #969ea3;
    font-size: 13px;
    line-height: 1.65;
}

/* FAQ and review */
.wp2-faq {
    padding: 100px max(36px, calc((100vw - var(--wp2-content)) / 2));
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: 90px;
    color: var(--wp2-text);
    background: #ffffff;
}

.wp2-faq-intro h2 {
    font-size: clamp(38px, 3.6vw, 52px);
}

.wp2-faq-list {
    border-top: 1px solid var(--wp2-line);
}

.wp2-faq-list details {
    border-bottom: 1px solid var(--wp2-line);
}

.wp2-faq-list summary {
    min-height: 74px;
    padding-block: 20px;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 18px;
    align-items: center;
    color: #202b32;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 700;
}

.wp2-faq-list summary::-webkit-details-marker {
    display: none;
}

.wp2-faq-list summary i {
    color: var(--wp2-green-dark);
    transition: transform 160ms ease;
}

.wp2-faq-list details[open] summary i {
    transform: rotate(45deg);
}

.wp2-faq-list details p {
    padding: 0 52px 24px 0;
    margin: 0;
    color: var(--wp2-muted);
    font-size: 14px;
    line-height: 1.7;
}

.wp2-review {
    padding: 94px max(36px, calc((100vw - var(--wp2-content)) / 2));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    color: var(--wp2-text);
    background: #eef7ed;
    border-bottom: 1px solid #cddfca;
}

.wp2-review > div {
    max-width: 830px;
}

.wp2-review .wp2-label {
    margin-bottom: 20px;
}

.wp2-review .wp2-button {
    flex: 0 0 auto;
}

/* Footer */
.wp2-footer {
    color: #dce0e2;
    background: var(--wp2-ink);
}

.wp2-footer-main {
    min-height: 188px;
    padding: 50px max(36px, calc((100vw - var(--wp2-content)) / 2));
    display: grid;
    grid-template-columns: 250px minmax(300px, 1fr) auto;
    align-items: center;
    gap: 55px;
}

.wp2-footer-main > p {
    max-width: 610px;
    margin: 0;
    color: #929a9f;
    font-size: 12px;
    line-height: 1.7;
}

.wp2-footer-main nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 16px 25px;
}

.wp2-footer-main nav a {
    color: #cfd4d6;
    font-size: 12px;
}

.wp2-footer-main nav a:hover {
    color: #64df7a;
}

.wp2-trademark,
.wp2-copyright {
    padding: 25px max(36px, calc((100vw - var(--wp2-content)) / 2));
    color: #717b80;
    border-top: 1px solid #242a2e;
    font-size: 11px;
    line-height: 1.7;
}

.wp2-trademark strong {
    color: #9ba2a6;
}

.wp2-copyright {
    padding-top: 15px;
    padding-bottom: 25px;
    font-size: 10.5px;
}

/* Product dialog */
.wp2-dialog {
    position: fixed;
    inset: 0;
    width: min(1180px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    margin: auto;
    padding: 0 18px 18px;
    overflow: auto;
    overscroll-behavior: contain;
    color: var(--wp2-text);
    background: #ffffff;
    border: 0;
    border-radius: 9px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.52);
}

.wp2-dialog::backdrop {
    background: rgba(0, 0, 0, 0.84);
}

.wp2-dialog-head {
    position: sticky;
    z-index: 2;
    top: 0;
    margin-inline: -18px;
    padding: 18px 21px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #ffffff;
    border-bottom: 1px solid #e4e6e2;
}

.wp2-dialog-head .wp2-label {
    margin-bottom: 6px;
    font-size: 10px;
}

.wp2-dialog-head h2 {
    margin: 0;
    color: var(--wp2-text);
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.04em !important;
}

.wp2-dialog-head button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--wp2-text);
    background: #f0f2ef;
    border: 1px solid #d8dbd8;
}

.wp2-dialog > img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 175px);
    max-height: calc(100dvh - 175px);
    object-fit: contain;
    object-position: top center;
    background: #f4f5f2;
    border: 1px solid #e0e3df;
    border-radius: 6px;
}

.wp2-dialog > p {
    margin: 13px 2px 1px;
    color: #687078;
    font-size: 11px;
    line-height: 1.55;
}

html.seo-landing.seo-landing--integration body.wp2-page.wp2-dialog-open {
    overflow: hidden;
}

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

    .wp2-desktop-nav a {
        font-size: 12px;
    }

    .wp2-nav-actions {
        gap: 18px;
    }

    .wp2-hero-inner {
        padding-inline: 42px;
        grid-template-columns: minmax(340px, 0.78fr) minmax(550px, 1.22fr);
        gap: 35px;
    }

    html.seo-landing.seo-landing--integration body.wp2-page .wp2-title {
        font-size: 54px !important;
    }

    .wp2-route-card {
        padding-inline: 14px;
    }

    .wp2-requirement {
        padding-inline: 28px;
    }

    .wp2-product-workspace {
        grid-template-columns: 160px minmax(0, 1fr) 260px;
        gap: 18px;
    }

    .wp2-product-context {
        padding-left: 4px;
    }

    .wp2-product-context h3 {
        font-size: 25px;
    }
}

@media (max-width: 980px) {
    .wp2-header {
        height: 78px;
    }

    .wp2-nav {
        padding-inline: 22px;
    }

    .wp2-desktop-nav,
    .wp2-nav-actions {
        display: none;
    }

    .wp2-mobile-menu {
        display: block;
    }

    .wp2-hero-inner {
        min-height: auto;
        padding: 75px 36px 62px;
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .wp2-hero-copy {
        max-width: 700px;
    }

    html.seo-landing.seo-landing--integration body.wp2-page .wp2-title {
        max-width: 760px;
        font-size: clamp(52px, 8vw, 72px) !important;
    }

    .wp2-route-proof {
        width: 100%;
        justify-self: stretch;
    }

    .wp2-hero-preview {
        height: 220px;
    }

    .wp2-preview-button-compact {
        height: 183px;
    }

    .wp2-requirements-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 12px 36px;
    }

    .wp2-requirement {
        min-height: 96px;
        padding-inline: 24px;
        border-bottom: 1px solid var(--wp2-line);
    }

    .wp2-requirement:nth-child(2) {
        padding-right: 0;
        border-right: 0;
    }

    .wp2-requirement:nth-child(3) {
        padding-left: 0;
        border-bottom: 0;
    }

    .wp2-requirement:nth-child(4) {
        border-bottom: 0;
    }

    .wp2-product-workspace {
        grid-template-columns: 170px minmax(0, 1fr);
    }

    .wp2-product-context {
        grid-column: 1 / -1;
        padding: 25px 0 0 188px;
    }

    .wp2-availability-note {
        margin-left: 188px;
    }

    .wp2-setup-layout,
    .wp2-faq {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .wp2-review {
        align-items: flex-start;
        flex-direction: column;
    }

    .wp2-footer-main {
        grid-template-columns: 220px 1fr;
    }

    .wp2-footer-main nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 72px;
    }

    .wp2-header {
        height: 72px;
    }

    .wp2-brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 9px;
        font-size: 20px;
    }

    .wp2-brand-copy strong {
        font-size: 20px;
    }

    .wp2-brand-copy small {
        font-size: 8px;
    }

    .wp2-hero-inner {
        padding: 58px 20px 45px;
        gap: 58px;
    }

    .wp2-eyebrow {
        margin-bottom: 19px;
        font-size: 11px;
    }

    html.seo-landing.seo-landing--integration body.wp2-page .wp2-title {
        font-size: clamp(42px, 13vw, 58px) !important;
        line-height: 1.02 !important;
    }

    .wp2-hero-lead {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.6;
    }

    .wp2-hero-actions {
        margin-top: 29px;
        display: grid;
        grid-template-columns: 1fr;
    }

    .wp2-button {
        width: 100%;
    }

    .wp2-route-grid {
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .wp2-route-card,
    .wp2-route-card:first-child,
    .wp2-route-card:last-child {
        min-height: auto;
        padding: 31px 22px 24px 112px;
        align-items: flex-start;
        text-align: left;
        border: 1px solid var(--wp2-line);
        border-radius: 9px;
    }

    .wp2-route-number {
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }

    .wp2-route-icon {
        position: absolute;
        top: 50%;
        left: 60px;
        width: 43px;
        height: 43px;
        margin: 0;
        border-radius: 13px;
        font-size: 23px;
        transform: translateY(-50%);
    }

    .wp2-route-card h2 {
        font-size: 14px;
    }

    .wp2-route-card p {
        font-size: 12px;
    }

    .wp2-route-arrow {
        top: auto;
        right: auto;
        bottom: -31px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    .wp2-hero-preview {
        height: 170px;
        margin-top: 29px;
    }

    .wp2-preview-bar {
        height: 34px;
    }

    .wp2-preview-bar small {
        display: none;
    }

    .wp2-preview-button-compact {
        height: 136px;
    }

    .wp2-preview-button-compact img {
        min-height: 136px;
    }

    .wp2-preview-button > span {
        width: 44px;
        min-height: 44px;
        padding: 0;
        justify-content: center;
        font-size: 0;
    }

    .wp2-preview-button > span i {
        font-size: 14px;
    }

    .wp2-requirements-inner {
        padding: 8px 20px;
        grid-template-columns: 1fr;
    }

    .wp2-requirement,
    .wp2-requirement:first-child,
    .wp2-requirement:nth-child(2),
    .wp2-requirement:nth-child(3),
    .wp2-requirement:nth-child(4) {
        min-height: 78px;
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid var(--wp2-line);
    }

    .wp2-requirement:last-child {
        border-bottom: 0;
    }

    .wp2-product,
    .wp2-setup,
    .wp2-security,
    .wp2-faq,
    .wp2-review {
        padding: 80px 20px;
    }

    .wp2-product::before {
        left: 20px;
    }

    .wp2-section-heading,
    .wp2-faq-intro {
        margin-bottom: 40px;
    }

    .wp2-section-heading h2,
    .wp2-faq-intro h2,
    .wp2-review h2 {
        font-size: 38px;
    }

    .wp2-section-heading > p:last-child,
    .wp2-faq-intro > p:last-child,
    .wp2-review > div > p:last-child {
        font-size: 15px;
    }

    .wp2-product-workspace {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .wp2-product-tabs {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .wp2-product-tabs button {
        min-height: 64px;
        grid-template-columns: 22px 1fr;
        font-size: 10px;
    }

    .wp2-product-context {
        padding: 24px 20px;
    }

    .wp2-product-context h3 {
        font-size: 29px;
    }

    .wp2-availability-note {
        margin: 30px 0 0;
    }

    .wp2-setup-tabs button {
        min-height: 76px;
        padding-right: 11px;
        grid-template-columns: 31px 41px 1fr 20px;
        gap: 9px;
        font-size: 13px;
    }

    .wp2-setup-tabs button > span {
        font-size: 9px;
    }

    .wp2-setup-tabs button > i:nth-of-type(1) {
        width: 37px;
        height: 37px;
    }

    .wp2-setup-panel {
        min-height: 360px;
        padding: 34px 28px;
    }

    .wp2-security-grid {
        grid-template-columns: 1fr;
    }

    .wp2-security-grid article {
        min-height: 225px;
    }

    .wp2-faq {
        gap: 12px;
    }

    .wp2-review {
        gap: 35px;
    }

    .wp2-footer-main {
        padding: 48px 20px 35px;
        grid-template-columns: 1fr;
        gap: 27px;
    }

    .wp2-footer-main nav {
        grid-column: auto;
        gap: 14px 20px;
    }

    .wp2-footer-main nav a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .wp2-trademark,
    .wp2-copyright {
        padding-inline: 20px;
    }

    .wp2-dialog {
        width: calc(100vw - 24px);
        max-height: calc(100vh - 24px);
        max-height: calc(100dvh - 24px);
        padding: 0 12px 12px;
    }

    .wp2-dialog-head {
        margin-inline: -12px;
        padding: 14px 14px 12px;
    }

    .wp2-dialog-head h2 {
        font-size: 18px;
    }

    .wp2-dialog > img {
        max-height: calc(100vh - 190px);
        max-height: calc(100dvh - 190px);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .wp2-page *,
    .wp2-page *::before,
    .wp2-page *::after {
        transition-duration: 0.01ms !important;
    }
}
