@font-face {
    font-family: Inter;
    src: url("../fonts/inter-latin-400-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url("../fonts/inter-latin-500-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: Inter;
    src: url("../fonts/inter-latin-700-normal.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
:root {
    --lime: #d6f349;
    --lime-hover: #c8e63a;
    --ink: #000;
    --paper: #fff;
    --canvas: #f5f5f1;
    --muted: #60615b;
    --line: #e4e5dd;
    --radius: 16px;
    --container: 1280px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body,
h1,
h2,
h3,
p,
ul {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    cursor: pointer;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
svg {
    display: block;
}
button,
a,
summary {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid #718713;
    outline-offset: 5px;
}
::selection {
    background: var(--lime);
    color: var(--ink);
}
::-moz-selection {
    background: var(--lime);
    color: var(--ink);
}
[hidden] {
    display: none !important;
}
.container {
    width: min(var(--container), calc(100% - 112px));
    margin-inline: auto;
}
.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 100;
    background: var(--ink);
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
}
.skip-link:focus {
    top: 12px;
}
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--line);
    z-index: 20;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
    gap: 42px;
}
.brand {
    flex-shrink: 0;
    display: inline-block;
}
.brand img {
    width: 180px;
    height: auto;
}
.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: flex-end;
    font-size: 13px;
    font-weight: 500;
}
.main-navigation > a {
    padding-block: 12px;
    white-space: nowrap;
}
.main-navigation > a:hover,
.text-link:hover,
.footer-links a:hover {
    color: #647814;
}
.navigation-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: 20px;
}
.sign-in {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.sign-in .icon {
    width: 15px;
    height: 15px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    padding: 17px 23px;
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: 7px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    transition:
        background 0.18s,
        transform 0.18s;
}
.button:hover {
    background: #292a25;
    transform: translateY(-2px);
}
.button .icon {
    width: 19px;
    height: 19px;
}
.button-small {
    background: var(--lime);
    color: #000;
    border-color: var(--lime);
    padding: 12px 17px;
    gap: 18px;
    font-size: 13px;
}
.button-small:hover {
    background: var(--lime-hover);
    border-color: var(--lime-hover);
}
.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: white;
}
.eyebrow {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.45px;
    line-height: 1.6;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 9px;
}
.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #73900d;
    box-shadow: 0 0 0 4px #f1f6d9;
}
.hero {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 42px;
    align-items: center;
    padding-block: 68px 62px;
}
.hero-copy {
    padding-block: 25px;
}
.hero h1 {
    font-size: clamp(48px, 4.4vw, 68px);
    font-weight: 500;
    line-height: 1.09;
    letter-spacing: -3.8px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.highlight {
    position: relative;
    z-index: 0;
    white-space: nowrap;
}
.highlight:after {
    content: "";
    position: absolute;
    inset: 57% -6px -1px -3px;
    background: var(--lime);
    z-index: -1;
    transform: rotate(-1.4deg);
}
.hero-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 455px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 31px;
    flex-wrap: wrap;
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
}
.text-link .icon {
    width: 19px;
    height: 19px;
}
.play-icon {
    font-size: 18px;
    line-height: 1;
}
.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--muted);
    font-size: 10px;
    margin-top: 27px;
}
.hero-note span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.hero-note .icon {
    width: 13px;
    height: 13px;
    color: #374e00;
}
.hero-art {
    height: 506px;
    position: relative;
    background: var(--lime);
    border-radius: 16px;
    isolation: isolate;
    overflow: hidden;
}
.art-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#afc93944 1px, transparent 1px),
        linear-gradient(90deg, #afc93944 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(transparent, #0009);
}
.art-caption {
    position: absolute;
    inset: 25px 24px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 8px;
    letter-spacing: 1.8px;
    font-weight: 500;
}
.tiny-cross {
    font-size: 19px;
    font-weight: 400;
}
.orbit {
    position: absolute;
    border: 1px solid #a7c13488;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.orbit-two {
    width: 350px;
    height: 350px;
}
.packaging {
    position: absolute;
    width: 190px;
    height: 267px;
    top: 140px;
    left: 38px;
    transform: rotate(-9deg);
    filter: drop-shadow(-4px 22px 13px #38420022);
}
.packaging-front {
    position: absolute;
    inset: 0;
    background: #f7f7f1;
    border: 1px solid #deded6;
    padding: 26px 20px 18px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
}
.packaging-side {
    position: absolute;
    top: 0;
    left: 100%;
    width: 29px;
    height: 100%;
    background: #deded2;
    transform: skewY(-30deg);
    transform-origin: top left;
    border: 1px solid #c9cabb;
}
.packaging-top {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 17px;
    background: #fff;
    transform: skewX(-60deg);
    transform-origin: bottom left;
    border: 1px solid #dfdfd5;
}
.package-logo {
    width: 111px;
}
.package-line {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.6px;
    line-height: 1.25;
}
.package-sticker {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #d2d4c7;
    padding-top: 13px;
    width: 100%;
}
.package-sticker > .icon {
    width: 43px;
    height: 43px;
    stroke-width: 1.9;
}
.package-sticker > span {
    font-size: 7px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}
.package-foot {
    font-size: 7px;
    margin-top: -9px;
    color: var(--muted);
}
.connection-badge {
    position: absolute;
    top: 217px;
    left: 205px;
    background: #000;
    color: var(--lime);
    border: 5px solid var(--lime);
    border-radius: 50%;
    height: 51px;
    width: 51px;
    display: grid;
    place-items: center;
    z-index: 4;
    transform: rotate(-17deg);
}
.product-phone {
    width: 211px;
    height: 371px;
    position: absolute;
    right: 28px;
    top: 81px;
    border: 6px solid #141512;
    border-radius: 30px;
    background: #fff;
    transform: rotate(8deg);
    box-shadow:
        12px 15px 0 #8ba12755,
        0 25px 28px #47501424;
    overflow: hidden;
}
.phone-camera {
    background: #141512;
    width: 69px;
    height: 13px;
    border-radius: 0 0 12px 12px;
    margin-inline: auto;
}
.phone-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 13px 11px;
}
.phone-brand img {
    width: 80px;
}
.phone-brand .icon {
    width: 13px;
    height: 13px;
}
.phone-visual {
    height: 99px;
    background: #eeeeea;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.phone-visual img {
    width: 85px;
}
.phone-visual > span {
    font-size: 6px;
    letter-spacing: 1.3px;
}
.phone-content {
    padding: 13px 14px 7px;
}
.phone-eyebrow {
    font-size: 5px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px;
    color: var(--muted);
}
.phone-content > strong {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.7px;
    font-weight: 500;
    display: block;
}
.phone-content > p {
    font-size: 7px;
    line-height: 1.6;
    color: #666;
    margin: 5px 0 9px;
}
.phone-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid #e4e4df;
    padding: 7px 0;
    font-size: 7px;
}
.phone-detail > .icon {
    width: 11px;
    height: 11px;
}
.phone-detail > .icon:last-child {
    width: 8px;
    height: 8px;
    margin-left: auto;
}
.phone-footer {
    font-size: 6px;
    text-align: center;
    background: var(--lime);
    padding: 6px;
}
.art-tag {
    position: absolute;
    bottom: 43px;
    left: 22px;
    border-radius: 6px;
    background: white;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 9px;
    font-weight: 500;
    padding: 10px 13px;
    box-shadow: 0 6px 20px #37400010;
    transform: rotate(-4deg);
    z-index: 5;
}
.art-tag .icon {
    width: 15px;
    height: 15px;
}
.art-coordinate {
    font-family: monospace;
    position: absolute;
    bottom: 16px;
    right: 18px;
    font-size: 7px;
    letter-spacing: 1px;
    color: #4c5a14;
}
.category-strip {
    border-block: 1px solid var(--line);
    background: #fbfbf8;
}
.category-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    min-height: 108px;
}
.category-inner > p {
    font-size: 10px;
    line-height: 1.6;
    color: var(--muted);
    flex-shrink: 0;
}
.category-inner > p strong {
    font-weight: 500;
    color: #161714;
}
.category-inner > span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    white-space: nowrap;
    color: #484942;
}
.category-inner .icon {
    width: 20px;
    height: 20px;
}
.section {
    padding-block: 108px;
}
.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
    margin-bottom: 43px;
}
h2 {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -2px;
    margin-top: 16px;
}
.section-heading > p {
    max-width: 353px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    padding-bottom: 4px;
}
.muted-heading {
    color: #777970;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}
.feature-card {
    padding: 30px;
    background: var(--canvas);
    border: 1px solid #edede6;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 310px;
}
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 23px;
}
.icon-box .icon {
    width: 20px;
    height: 20px;
}
.feature-card h3 {
    font-size: 21px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.65px;
    margin-bottom: 13px;
}
.feature-card p {
    font-size: 12px;
    line-height: 1.85;
    color: var(--muted);
}
.feature-card-large {
    grid-row: span 2;
    min-height: 658px;
    background: #ededdf;
    padding: 30px;
}
.feature-card-large p {
    max-width: 280px;
}
.feature-card-large .icon-box {
    background: #ffffff80;
}
.feature-card-compact {
    min-height: 268px;
}
.feature-card-compact:last-child {
    grid-column: 1 / -1;
    min-height: 110px;
    display: grid;
    grid-template-columns: 40px 230px 1fr;
    gap: 24px;
    align-items: center;
}
.feature-card-compact:last-child .icon-box,
.feature-card-compact:last-child h3 {
    margin: 0;
}
.feature-footnote {
    font-size: 9px;
    color: #5d6150;
    letter-spacing: 0.35px;
    position: absolute;
    bottom: 26px;
    left: 30px;
}
.page-composition {
    position: relative;
    width: 100%;
    height: 290px;
    margin-top: 36px;
}
.palette-label {
    font-size: 8px;
    letter-spacing: 0.9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.palette-label span {
    font-size: 18px;
}
.palette-swatches {
    display: flex;
    gap: 5px;
    margin-top: 8px;
    align-items: center;
}
.palette-swatches i {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
    border: 1px solid #0001;
}
.palette-swatches i:nth-child(2) {
    background: #d6f349;
}
.palette-swatches i:nth-child(3) {
    background: #fff;
}
.palette-swatches i:nth-child(4) {
    background: #b0b7a0;
}
.palette-swatches > span {
    font-size: 8px;
    margin-left: auto;
    color: #5f6650;
}
.mini-page {
    background: #fff;
    position: absolute;
    box-shadow: 0 9px 20px #20281010;
    border: 1px solid #deded0;
    border-radius: 8px;
    width: 192px;
    min-height: 248px;
}
.mini-page-back {
    left: -4px;
    top: 87px;
    transform: rotate(-8deg);
    background: #cfd6bc;
}
.mini-page-bar {
    height: 32px;
    border-bottom: 1px solid #b7bca9;
}
.mini-blocks {
    display: flex;
    gap: 6px;
    padding: 15px;
}
.mini-blocks > span {
    height: 70px;
    flex: 1;
    border-radius: 4px;
    background: #e5e9de;
}
.mini-page-front {
    right: 0;
    top: 76px;
    transform: rotate(6deg);
    padding: 14px;
}
.mini-page-front > img {
    width: 75px;
    margin-bottom: 13px;
}
.mini-page-hero {
    background: var(--lime);
    height: 89px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
}
.mini-page-front > strong {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: -0.2px;
    display: block;
}
.mini-text-line {
    height: 3px;
    background: #e9e9e3;
    margin-top: 6px;
    width: 100%;
}
.mini-text-line.short {
    width: 72%;
}
.mini-page-bottom {
    font-size: 7px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 8px;
}
.mini-page-bottom .icon {
    width: 11px;
    height: 11px;
}
.link-visual {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 26px;
    margin-top: auto;
}
.link-visual > span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: white;
    border: 1px solid #dcded4;
    border-radius: 10px;
}
.link-visual > span > .icon {
    width: 31px;
    height: 31px;
}
.link-visual > i {
    height: 1px;
    background: repeating-linear-gradient(
        90deg,
        #b8bcae 0 4px,
        transparent 4px 8px
    );
    flex: 1;
}
.link-visual b {
    width: 21px;
    height: 21px;
    position: absolute;
    right: -6px;
    top: -8px;
    background: var(--lime);
    border: 3px solid var(--canvas);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.link-visual b .icon {
    width: 12px;
    height: 12px;
}
.level-labels {
    display: flex;
    gap: 7px;
    padding-top: 26px;
    margin-top: auto;
    align-items: center;
    font-size: 9px;
    width: 100%;
}
.level-labels > span {
    background: white;
    border: 1px solid #e0e2d8;
    padding: 6px 10px;
    border-radius: 5px;
}
.level-labels > span:nth-child(2) {
    background: #e5edc6;
}
.level-labels > span:nth-child(3) {
    background: var(--lime);
}
.level-labels > .icon {
    margin-left: auto;
    width: 17px;
    height: 17px;
}
.how-section {
    background: #11120f;
    color: #fff;
    padding-block: 95px 31px;
    position: relative;
}
.how-section .eyebrow {
    color: var(--lime);
}
.how-section h2 {
    font-size: 45px;
}
.how-section .section-heading > .text-link {
    color: var(--lime);
    margin-bottom: 7px;
}
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
    margin-top: 53px;
}
.step {
    border-top: 1px solid #47493d;
    padding-top: 21px;
    padding-bottom: 36px;
}
.step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}
.step-top > span {
    font-family: monospace;
    font-size: 14px;
    color: var(--lime);
}
.step-top > .icon {
    color: #a5a79b;
    width: 22px;
    height: 22px;
}
.step h3 {
    font-size: 19px;
    letter-spacing: -0.5px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 13px;
}
.step p {
    color: #aaada1;
    font-size: 12px;
    line-height: 1.9;
    max-width: 318px;
}
.how-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid #30332a;
    padding-top: 28px;
    color: #a8ab9e;
    font-size: 11px;
}
.how-bottom .icon {
    color: var(--lime);
    width: 15px;
    height: 15px;
}
.industry-tabs {
    display: flex;
    border-bottom: 1px solid var(--line);
    margin-top: 15px;
    gap: 35px;
    overflow: auto;
}
.industry-tabs > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    padding: 17px 4px;
    border-bottom: 2px solid transparent;
    color: var(--muted);
}
.industry-tabs > a[aria-selected="true"] {
    border-bottom-color: #000;
    color: #000;
}
.industry-tabs > a:hover {
    color: #000;
}
.industry-tabs .icon {
    width: 19px;
    height: 19px;
}
.industry-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-top: 45px;
}
.industry-copy {
    padding: 13px 0;
}
.industry-copy > .eyebrow {
    color: var(--muted);
    font-size: 9px;
}
.industry-copy h3 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1.3px;
    margin-block: 15px 18px;
}
.industry-copy > p:not(.eyebrow) {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.85;
    max-width: 410px;
}
.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    margin-top: 26px;
    margin-bottom: 29px;
    font-size: 10px;
    max-width: 410px;
}
.check-list > li {
    display: flex;
    align-items: center;
    gap: 7px;
}
.check-list .icon {
    width: 14px;
    height: 14px;
    color: #53610e;
}
.industry-art {
    position: relative;
    min-height: 390px;
    background: #eeeede;
    border-radius: 12px;
    overflow: hidden;
    isolation: isolate;
}
.industry-art-top {
    position: absolute;
    inset: 23px 22px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 7px;
    letter-spacing: 1.1px;
    color: #5c604b;
}
.industry-art-top .icon {
    width: 15px;
    height: 15px;
}
.industry-art-bottom {
    position: absolute;
    bottom: 20px;
    left: 23px;
    font-size: 7px;
    letter-spacing: 1.1px;
    color: #5c604b;
}
.category-object {
    position: absolute;
    left: 50px;
    top: 98px;
    width: 161px;
    height: 234px;
    background: #fafaf2;
    border: 1px solid #d7d8c6;
    box-shadow: 10px 16px 21px #464c2021;
    transform: rotate(-10deg);
    border-radius: 14px 14px 8px 8px;
}
.category-object-food:before {
    content: "";
    position: absolute;
    top: 12px;
    left: 9px;
    right: 9px;
    border-top: 4px double #c6c7b8;
}
.object-label {
    position: absolute;
    inset: 45px 0 16px;
    background: #d8dfbd;
    padding: 16px 19px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.object-label > .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 2px;
}
.object-label > span {
    font-size: 6px;
    letter-spacing: 0.8px;
}
.object-label > strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.6px;
    max-width: 114px;
}
.object-label-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}
.object-label-bottom > .icon {
    width: 26px;
    height: 26px;
}
.info-slip {
    position: absolute;
    right: 23px;
    top: 154px;
    width: 215px;
    background: white;
    border: 1px solid #dfe1d2;
    border-radius: 7px;
    box-shadow: 0 13px 22px #282c0f15;
    padding: 18px;
    transform: rotate(5deg);
}
.info-slip > span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 6px;
    letter-spacing: 0.7px;
    margin-bottom: 15px;
}
.info-slip > span .icon {
    width: 12px;
    height: 12px;
}
.info-slip > div {
    font-size: 9px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-top: 1px solid #edeee8;
}
.info-slip > div .icon {
    width: 12px;
    height: 12px;
    color: #647816;
}
.industry-art-care {
    background: #efebe3;
}
.category-object-care {
    border-radius: 35px 35px 14px 14px;
    width: 145px;
    height: 232px;
    top: 108px;
    left: 61px;
    background: #faf7ef;
}
.category-object-care .object-cap {
    position: absolute;
    bottom: 100%;
    width: 70px;
    height: 33px;
    left: 37px;
    border-radius: 4px 4px 0 0;
    background: #1e2019;
}
.category-object-care .object-label {
    inset: 52px 0 25px;
    background: #ded5bd;
}
.industry-art-apparel {
    background: #e7e9e1;
}
.category-object-apparel {
    border-radius: 8px;
    top: 93px;
    height: 242px;
    left: 65px;
    background: #f0f0e7;
}
.category-object-apparel:before {
    content: "";
    position: absolute;
    top: 16px;
    left: 50%;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background: #a4aa96;
    box-shadow: 0 0 0 3px #d1d4c6;
}
.category-object-apparel:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(100% - 21px);
    width: 70px;
    height: 140px;
    border: 2px solid #898d7d;
    border-radius: 50%;
    transform: rotate(-20deg);
    z-index: -1;
}
.category-object-apparel .object-label {
    background: #cfd8be;
    inset: 51px 0 17px;
}
.industry-art-electronics {
    background: #e5e8e6;
}
.category-object-electronics {
    border-radius: 5px;
    left: 45px;
    top: 108px;
    width: 174px;
    height: 224px;
    background: #242821;
    transform: rotate(-8deg);
}
.category-object-electronics .object-label {
    inset: 27px 16px;
    background: #e3e8d6;
    padding: 14px;
}
.hosting-section {
    padding-block: 45px 48px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 65px;
}
.standards-section {
    padding-block: 72px 28px;
}
.standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-top: 42px;
}
.standards-grid > article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 26px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}
.standards-grid > article > .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 18px;
}
.standards-grid > article h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}
.standards-grid > article p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}
.standards-grid > article > span {
    margin-top: 18px;
    font-size: 8px;
    letter-spacing: 0.6px;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px 8px;
}
.plans-section {
    background: #11120f;
    color: #fff;
    padding-block: 72px 56px;
}
.plans-section .eyebrow {
    color: var(--lime);
}
.plans-section h2 {
    font-size: 45px;
    letter-spacing: -2px;
}
.plans-section .section-heading > .text-link {
    color: var(--lime);
    margin-bottom: 7px;
    flex-shrink: 0;
    white-space: nowrap;
}
.plan-tiers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 22px;
    row-gap: 22px;
    margin-top: 48px;
}
.plan-tier {
    border-top: 1px solid #47493d;
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
    min-height: 100%;
}
.plan-tier-featured {
    border-top-color: var(--lime);
}
.plan-tier-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 22px;
}
.plan-tier-index {
    font-family:
        ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    color: var(--lime);
}
.plan-tier-tag {
    font-size: 8px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #11120f;
    background: var(--lime);
    border-radius: 4px;
    padding: 4px 8px;
}
.plan-tier h3 {
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.6px;
    margin: 0;
}
.plan-tier-stat {
    margin: 0;
    font-size: 13px;
    color: #a8ab9e;
    letter-spacing: -0.2px;
}
.plan-tier-stat strong {
    display: block;
    font-size: clamp(32px, 3.4vw, 48px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 6px;
}
.plan-tier-featured .plan-tier-stat strong {
    color: var(--lime);
}
.plan-tier .check-list {
    margin: 4px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: none;
}
.plan-tier .check-list > li {
    color: #c4c6ba;
    font-size: 12px;
}
.plan-tier .check-list .icon {
    color: var(--lime);
}
@supports (grid-template-rows: subgrid) {
    .plan-tiers {
        row-gap: 0;
    }
    .plan-tier {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 5;
        gap: 0;
        min-height: 0;
    }
    .plan-tier > :not(:first-child) {
        margin-top: 12px;
    }
    .plan-tier-note {
        margin: 12px 0 0;
    }
}
.plan-tier-note {
    margin: auto 0 0;
    padding-top: 8px;
    font-size: 12px;
    line-height: 1.7;
    color: #8b8d82;
    min-width: 0;
}
.plans-footnote {
    margin: 36px 0 0;
    padding-top: 24px;
    border-top: 1px solid #30332a;
    font-size: 11px;
    line-height: 1.7;
    color: #a8ab9e;
    width: 100%;
    max-width: none;
}
@media (min-width: 1060px) {
    .plans-footnote {
        white-space: nowrap;
    }
}
.hosting-intro h2 {
    font-size: 29px;
    letter-spacing: -1px;
    margin-top: 12px;
}
.hosting-intro > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
    margin-top: 16px;
    max-width: 280px;
}
.hosting-intro .eyebrow {
    font-size: 8px;
}
.hosting-section > article {
    padding-top: 5px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.hosting-section > article > .icon {
    width: 24px;
    height: 24px;
    margin-bottom: 18px;
}
.hosting-section > article h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
}
.hosting-section > article p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.8;
}
.hosting-section > article > span {
    margin-top: 17px;
    font-size: 8px;
    letter-spacing: 0.6px;
    background: var(--canvas);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px 8px;
}
.faq-section {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr;
    gap: 90px;
}
.faq-heading h2 {
    font-size: 39px;
    letter-spacing: -1.6px;
}
.faq-heading > img {
    margin-top: 42px;
    width: 119px;
}
.faq-list {
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    align-items: center;
    cursor: pointer;
    padding: 22px 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    flex-shrink: 0;
}
.faq-item summary .icon {
    width: 17px;
    height: 17px;
    transition: transform 0.2s;
}
.faq-item[open] summary .icon {
    transform: rotate(45deg);
}
.faq-item[open] summary {
    padding-bottom: 13px;
}
.faq-item > p {
    padding: 0 30px 24px 0;
    font-size: 12px;
    line-height: 1.9;
    color: var(--muted);
}
.cta-section {
    background: var(--lime);
    overflow: hidden;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    padding-block: 77px 81px;
}
.cta-inner .eyebrow {
    font-size: 9px;
}
.cta-inner h2 {
    font-size: 47px;
    letter-spacing: -2px;
    margin-top: 17px;
}
.cta-inner p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 18px;
    color: #465113;
}
.cta-inner .button {
    margin-top: 27px;
}
.cta-owl {
    width: 335px;
    flex-shrink: 0;
}
.site-footer {
    background: #10110e;
    color: white;
    padding-top: 54px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr auto;
    gap: 60px;
    padding-bottom: 52px;
}
.footer-brand p {
    color: #a2a799;
    font-size: 12px;
    line-height: 1.75;
    margin-top: 15px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: #b4b8ac;
    padding-top: 4px;
}
.footer-links > p {
    color: #fff;
    font-size: 10px;
    margin-bottom: 6px;
}
.footer-links > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.footer-links .icon {
    width: 12px;
    height: 12px;
}
.footer-links a:hover {
    color: var(--lime);
}
.footer-top {
    display: grid;
    place-items: center;
    border: 1px solid #45483d;
    border-radius: 50%;
    width: 43px;
    height: 43px;
}
.footer-top .icon {
    width: 19px;
    height: 19px;
}
.footer-top:hover {
    background: #292c22;
}
.footer-bottom {
    border-top: 1px solid #35382f;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-block: 22px;
    color: #9b9f92;
    font-size: 9px;
}
.footer-legal-links {
    display: inline-flex;
    gap: 16px;
}
.footer-legal-links a {
    color: #b4b8ac;
}
.footer-legal-links a:hover {
    color: #fff;
}
.cookie-notice {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 80;
    max-width: 760px;
    margin: 0 auto;
}
.cookie-notice-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e3e3df;
    border-radius: 18px;
    box-shadow: 0 18px 40px -24px #11120f73;
}
.cookie-notice-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f3f8d6;
    color: #11120f;
}
.cookie-notice-icon .icon {
    width: 18px;
    height: 18px;
}
.cookie-notice p {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: #5c5c58;
}
.cookie-notice strong {
    color: #11120f;
    font-weight: 700;
}
.cookie-notice a {
    color: #11120f;
    text-underline-offset: 2px;
}
.cookie-notice-accept {
    flex-shrink: 0;
    margin-left: auto;
    border: 0;
    border-radius: 10px;
    background: var(--lime);
    color: #11120f;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    cursor: pointer;
}
.legal-page {
    padding-block: 56px 88px;
    max-width: 760px;
}
.legal-header {
    margin-bottom: 36px;
}
.legal-header h1 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 500;
    letter-spacing: -1.8px;
    line-height: 1.1;
    margin-top: 12px;
}
.legal-meta {
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}
.legal-body {
    font-size: 14px;
    line-height: 1.75;
    color: #2a2c26;
}
.legal-body h2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.4px;
    margin: 36px 0 12px;
}
.legal-body h3 {
    font-size: 15px;
    font-weight: 500;
    margin: 22px 0 8px;
}
.legal-body p,
.legal-body ul {
    margin: 0 0 14px;
    color: var(--muted);
}
.legal-body ul {
    padding-left: 1.2em;
}
.legal-body li {
    margin-bottom: 8px;
}
.legal-body a {
    text-decoration: underline;
    text-underline-offset: 2px;
}
.legal-body strong {
    color: var(--ink);
    font-weight: 500;
}
.legal-body code {
    font-size: 12px;
    background: #f2f2f0;
    padding: 1px 5px;
    border-radius: 4px;
}
@media (min-width: 1440px) {
    .hero h1 {
        font-size: 72px;
    }
    .hero-art {
        height: 533px;
    }
    .product-phone {
        right: 43px;
        top: 94px;
    }
    .packaging {
        left: 50px;
        top: 154px;
    }
    .connection-badge {
        left: 232px;
        top: 247px;
    }
    .art-tag {
        bottom: 43px;
        left: 37px;
    }
    .hero {
        gap: 60px;
    }
}
@media (max-width: 1200px) {
    .container {
        width: calc(100% - 72px);
    }
    .header-inner {
        gap: 28px;
    }
    .main-navigation {
        gap: 20px;
    }
    .navigation-actions {
        gap: 18px;
        margin-left: 7px;
    }
    .brand img {
        width: 180px;
    }
    .hero {
        gap: 30px;
    }
    .hero h1 {
        font-size: 57px;
        letter-spacing: -3px;
    }
    .hero-art {
        height: 470px;
    }
    .product-phone {
        right: 20px;
        top: 70px;
        width: 195px;
        height: 355px;
    }
    .phone-brand {
        padding-top: 10px;
    }
    .phone-visual {
        height: 92px;
    }
    .phone-content {
        padding-top: 10px;
    }
    .packaging {
        left: 22px;
        top: 130px;
        width: 170px;
        height: 255px;
    }
    .packaging-front {
        padding: 23px 17px 18px;
    }
    .connection-badge {
        left: 170px;
        top: 210px;
    }
    .art-tag {
        left: 17px;
        bottom: 34px;
        font-size: 8px;
    }
    .hero-actions {
        gap: 17px;
    }
    .hero-actions > .button {
        font-size: 12px;
        gap: 18px;
        padding: 15px 17px;
    }
    .hero-actions > .text-link {
        font-size: 11px;
    }
    .hero-note {
        font-size: 9px;
        gap: 12px;
    }
    .category-inner {
        gap: 15px;
    }
    .category-inner > span {
        font-size: 10px;
    }
    .feature-card {
        padding: 24px;
    }
    .feature-footnote {
        left: 24px;
    }
    .industry-panel {
        gap: 50px;
    }
    .industry-tabs {
        gap: 30px;
    }
    .info-slip {
        width: 196px;
        right: 20px;
    }
    .category-object {
        left: 35px;
    }
    .hosting-section {
        gap: 40px;
    }
    .standards-grid {
        gap: 24px;
    }
    .faq-section {
        gap: 70px;
    }
}
@media (max-width: 1060px) {
    .header-inner {
        min-height: 83px;
        flex-wrap: wrap;
        gap: 0;
    }
    .navigation-ready .menu-toggle {
        display: flex;
    }
    .main-navigation {
        width: 100%;
        flex: auto;
        justify-content: space-between;
        gap: 17px;
        flex-wrap: wrap;
        padding-bottom: 19px;
    }
    .navigation-ready .main-navigation {
        display: none;
    }
    .navigation-ready .main-navigation.is-open {
        display: flex;
    }
    .navigation-actions {
        margin-left: 0;
    }
    .hero {
        padding-block: 44px;
        gap: 22px;
    }
    .hero h1 {
        font-size: 49px;
        letter-spacing: -2.8px;
    }
    .hero-description {
        font-size: 14px;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .hero-art {
        height: 445px;
    }
    .product-phone {
        width: 181px;
        height: 344px;
        right: 14px;
        top: 71px;
        border-width: 5px;
    }
    .phone-visual {
        height: 84px;
    }
    .phone-brand img {
        width: 70px;
    }
    .phone-content > strong {
        font-size: 14px;
    }
    .packaging {
        left: 15px;
        top: 140px;
        width: 148px;
        height: 238px;
    }
    .packaging-front {
        padding: 20px 14px;
    }
    .package-logo {
        width: 102px;
    }
    .package-line {
        font-size: 14px;
    }
    .package-sticker > span {
        font-size: 6px;
    }
    .package-foot {
        font-size: 6px;
    }
    .package-sticker > .icon {
        width: 33px;
        height: 33px;
    }
    .connection-badge {
        left: 137px;
        top: 222px;
        width: 42px;
        height: 42px;
    }
    .art-tag {
        font-size: 7px;
        left: 12px;
        bottom: 25px;
        gap: 5px;
        padding: 8px 9px;
    }
    .art-tag .icon {
        width: 12px;
        height: 12px;
    }
    .art-coordinate {
        font-size: 6px;
        bottom: 10px;
    }
    .art-caption {
        font-size: 6px;
        letter-spacing: 1.3px;
        inset: 19px 17px auto;
    }
    .hero-note {
        font-size: 9px;
        gap: 6px 16px;
    }
    .hero-actions {
        gap: 13px;
    }
    .hero-actions > .button {
        width: auto;
    }
    .category-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding-block: 24px;
        gap: 18px 25px;
    }
    .category-inner > p {
        flex-basis: 100%;
        text-align: center;
    }
    .category-inner > p br {
        display: none;
    }
    .category-inner > p strong {
        margin-left: 3px;
    }
    .section {
        padding-block: 80px;
    }
    h2 {
        font-size: 37px;
        letter-spacing: -1.7px;
    }
    .section-heading {
        gap: 40px;
    }
    .section-heading > p {
        max-width: 300px;
        font-size: 12px;
    }
    .feature-grid {
        gap: 13px;
    }
    .feature-card {
        padding: 22px;
        min-height: 315px;
    }
    .feature-card h3 {
        font-size: 19px;
    }
    .feature-card p {
        font-size: 11px;
    }
    .feature-card-large {
        min-height: 640px;
    }
    .feature-card-compact {
        min-height: 269px;
    }
    .feature-footnote {
        left: 22px;
        font-size: 8px;
    }
    .mini-page {
        width: 161px;
        min-height: 232px;
    }
    .mini-page-front {
        right: -7px;
    }
    .mini-page-front > strong {
        font-size: 8px;
    }
    .mini-page-back {
        left: -7px;
    }
    .page-composition {
        margin-top: 28px;
    }
    .level-labels {
        gap: 4px;
        font-size: 8px;
    }
    .level-labels > span {
        padding: 5px 8px;
    }
    .steps {
        gap: 30px;
    }
    .plan-tiers {
        gap: 22px;
    }
    .plans-section h2 {
        font-size: 38px;
    }
    .how-section h2 {
        font-size: 38px;
    }
    .step h3 {
        font-size: 17px;
    }
    .step p {
        font-size: 11px;
    }
    .industry-panel {
        gap: 35px;
    }
    .industry-copy h3 {
        font-size: 29px;
    }
    .industry-copy > p:not(.eyebrow) {
        font-size: 12px;
    }
    .check-list {
        font-size: 9px;
        gap: 10px;
    }
    .industry-art {
        min-height: 375px;
    }
    .category-object {
        left: 29px;
        width: 143px;
    }
    .info-slip {
        width: 175px;
        right: 18px;
        top: 171px;
    }
    .info-slip > div {
        font-size: 8px;
    }
    .info-slip > span {
        font-size: 5px;
    }
    .industry-tabs {
        justify-content: space-between;
        gap: 16px;
    }
    .industry-tabs > a {
        font-size: 10px;
        gap: 7px;
    }
    .hosting-section {
        gap: 30px;
    }
    .hosting-intro h2 {
        font-size: 27px;
    }
    .faq-section {
        gap: 40px;
    }
    .faq-heading h2 {
        font-size: 32px;
    }
    .faq-item summary {
        font-size: 12px;
    }
    .cta-inner h2 {
        font-size: 39px;
    }
    .cta-owl {
        width: 260px;
    }
    .footer-main {
        gap: 35px;
    }
}
@media (max-width: 760px) {
    html {
        scroll-padding-top: 90px;
    }
    .container {
        width: calc(100% - 40px);
    }
    .header-inner {
        min-height: 76px;
    }
    .main-navigation {
        padding-top: 18px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-navigation > a {
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
    }
    .navigation-actions {
        padding-top: 18px;
        justify-content: space-between;
    }
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-block: 29px 35px;
    }
    .hero-copy {
        padding: 16px 0 2px;
    }
    .hero .eyebrow {
        font-size: 8px;
        letter-spacing: 1.1px;
    }
    .hero h1 {
        font-size: clamp(42px, 8.2vw, 62px);
        letter-spacing: -2.8px;
        line-height: 1.12;
        margin-top: 22px;
        margin-bottom: 21px;
    }
    .hero-description {
        font-size: 14px;
        max-width: 470px;
        line-height: 1.8;
    }
    .hero-actions {
        gap: 22px;
        margin-top: 25px;
    }
    .hero-actions > .button {
        padding: 15px 18px;
        font-size: 12px;
        gap: 18px;
    }
    .hero-actions > .text-link {
        font-size: 11px;
    }
    .hero-note {
        font-size: 9px;
        gap: 18px;
        margin-top: 19px;
    }
    .hero-art {
        height: 456px;
        max-width: 540px;
        width: 100%;
        justify-self: center;
    }
    .packaging {
        width: 176px;
        height: 265px;
        top: 130px;
        left: calc(50% - 203px);
    }
    .packaging-front {
        padding: 24px 18px;
    }
    .package-logo {
        width: 111px;
    }
    .package-line {
        font-size: 16px;
    }
    .package-sticker > .icon {
        width: 39px;
        height: 39px;
    }
    .package-sticker > span {
        font-size: 7px;
    }
    .package-foot {
        font-size: 7px;
    }
    .product-phone {
        width: 202px;
        height: 359px;
        right: calc(50% - 208px);
        top: 60px;
    }
    .phone-brand img {
        width: 80px;
    }
    .phone-brand {
        padding-top: 14px;
    }
    .phone-visual {
        height: 96px;
    }
    .phone-content {
        padding-top: 13px;
    }
    .phone-content > strong {
        font-size: 16px;
    }
    .connection-badge {
        left: calc(50% - 41px);
        top: 221px;
        width: 49px;
        height: 49px;
    }
    .art-caption {
        font-size: 7px;
        inset: 18px 20px auto;
    }
    .art-tag {
        font-size: 8px;
        padding: 10px 12px;
        left: 19px;
        bottom: 24px;
    }
    .art-tag .icon {
        width: 14px;
        height: 14px;
    }
    .art-coordinate {
        font-size: 6px;
        right: 14px;
        bottom: 10px;
    }
    .category-inner {
        gap: 19px 23px;
        padding-block: 25px;
    }
    .category-inner > span {
        font-size: 10px;
    }
    .category-inner > span:last-child {
        display: none;
    }
    .category-inner > p {
        margin-bottom: 1px;
    }
    .category-inner .icon {
        width: 18px;
        height: 18px;
    }
    .section {
        padding-block: 65px;
    }
    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    h2 {
        font-size: 35px;
        letter-spacing: -1.6px;
        margin-top: 13px;
    }
    .eyebrow {
        font-size: 8px;
        letter-spacing: 1.2px;
    }
    .section-heading > p {
        max-width: 480px;
        font-size: 12px;
        line-height: 1.8;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
    }
    .feature-card-large {
        grid-column: span 2;
        grid-row: auto;
        min-height: 360px;
        display: block;
        padding: 25px;
        width: 100%;
    }
    .feature-card-copy {
        width: 48%;
        max-width: 255px;
    }
    .feature-card-large h3 {
        font-size: 23px;
    }
    .feature-card-large p {
        font-size: 12px;
    }
    .feature-card-large .page-composition {
        position: absolute;
        right: 21px;
        top: 30px;
        width: 42%;
        margin: 0;
        max-width: 245px;
    }
    .feature-card-large .mini-page-front {
        right: 0;
        top: 78px;
    }
    .feature-card-large .mini-page-back {
        top: 88px;
        left: 0;
    }
    .feature-card-large .feature-footnote {
        left: 25px;
        bottom: 24px;
        font-size: 8px;
    }
    .feature-card:not(.feature-card-large) {
        min-height: 275px;
        padding: 22px;
    }
    .feature-card:not(.feature-card-large) h3 {
        font-size: 18px;
    }
    .feature-card-compact:last-child {
        grid-column: span 2;
        min-height: auto;
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 0 17px;
    }
    .feature-card-compact:last-child .icon-box {
        grid-row: span 2;
        margin: 0;
    }
    .feature-card-compact:last-child h3 {
        margin-bottom: 7px;
    }
    .feature-card-compact:last-child p {
        max-width: 470px;
    }
    .icon-box {
        margin-bottom: 19px;
    }
    .page-composition .mini-page {
        width: 167px;
    }
    .link-visual {
        padding-top: 21px;
    }
    .level-labels {
        gap: 5px;
    }
    .level-labels > .icon {
        display: none;
    }
    .how-section {
        padding-block: 64px 27px;
    }
    .how-section h2 {
        font-size: 35px;
    }
    .how-section .section-heading {
        gap: 24px;
    }
    .how-section .section-heading > .text-link {
        font-size: 12px;
        margin: 0;
    }
    .steps {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 32px;
    }
    .plan-tiers {
        grid-template-columns: 1fr;
        gap: 0;
        margin-top: 32px;
    }
    .plan-tier {
        padding-block: 22px 28px;
    }
    .step {
        padding-block: 22px 28px;
    }
    .step-top {
        margin-bottom: 18px;
    }
    .step-top > .icon {
        width: 23px;
        height: 23px;
    }
    .step h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }
    .step p {
        font-size: 12px;
        max-width: 520px;
    }
    .how-bottom {
        font-size: 10px;
        align-items: flex-start;
        padding-top: 24px;
    }
    .how-bottom .icon {
        margin-top: 3px;
    }
    .industry-tabs {
        margin-top: 0;
        gap: 25px;
        justify-content: flex-start;
    }
    .industry-tabs > a {
        font-size: 11px;
        padding: 15px 0;
    }
    .industry-tabs .icon {
        width: 17px;
        height: 17px;
    }
    .industry-panel {
        grid-template-columns: 1fr;
        gap: 27px;
        padding-top: 28px;
    }
    .industry-copy {
        padding: 0;
    }
    .industry-copy h3 {
        font-size: 31px;
    }
    .industry-copy > p:not(.eyebrow) {
        max-width: 510px;
    }
    .check-list {
        font-size: 10px;
        gap: 13px 20px;
        max-width: 400px;
    }
    .industry-art {
        min-height: 380px;
    }
    .category-object {
        left: calc(50% - 166px);
        width: 160px;
        top: 83px;
        height: 246px;
    }
    .info-slip {
        right: calc(50% - 188px);
        top: 151px;
        width: 222px;
        padding: 21px;
    }
    .info-slip > span {
        font-size: 6px;
    }
    .info-slip > div {
        font-size: 9px;
    }
    .industry-art-top {
        font-size: 7px;
    }
    .category-object-care {
        top: 109px;
        height: 225px;
        width: 149px;
    }
    .category-object-apparel {
        top: 96px;
    }
    .category-object-electronics {
        top: 107px;
        height: 223px;
        width: 173px;
    }
    .hosting-section {
        grid-template-columns: 1fr 1fr;
        gap: 30px 25px;
        padding-block: 33px 39px;
    }
    .standards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .hosting-intro {
        grid-column: span 2;
        max-width: 460px;
    }
    .hosting-intro h2 {
        font-size: 31px;
    }
    .hosting-intro > p:not(.eyebrow) {
        max-width: 410px;
    }
    .hosting-section > article h3 {
        font-size: 16px;
        line-height: 1.4;
    }
    .hosting-section > article p {
        font-size: 11px;
    }
    .faq-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .faq-heading {
        position: relative;
    }
    .faq-heading h2 {
        font-size: 35px;
    }
    .faq-heading > img {
        position: absolute;
        width: 80px;
        right: 3px;
        bottom: 4px;
        margin: 0;
    }
    .faq-item summary {
        font-size: 12px;
        padding-block: 20px;
        gap: 20px;
    }
    .faq-item > p {
        font-size: 12px;
    }
    .cta-inner {
        padding-block: 52px 55px;
        gap: 30px;
    }
    .cta-inner h2 {
        font-size: 35px;
        letter-spacing: -1.7px;
    }
    .cta-inner p:not(.eyebrow) {
        font-size: 12px;
        max-width: 300px;
    }
    .cta-inner .eyebrow {
        font-size: 8px;
    }
    .cta-inner .button {
        font-size: 12px;
        padding: 15px 18px;
    }
    .cta-owl {
        width: 160px;
    }
    .footer-main {
        grid-template-columns: 1.1fr 1fr;
        gap: 33px 28px;
        padding-bottom: 34px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-brand p {
        font-size: 11px;
    }
    .footer-links {
        font-size: 11px;
    }
    .footer-top {
        position: absolute;
        right: 0;
        top: 0;
        width: 39px;
        height: 39px;
    }
    .site-footer .container {
        position: relative;
    }
    .footer-bottom {
        font-size: 8px;
        gap: 12px;
    }
    .site-footer {
        padding-top: 40px;
    }
}
@media (max-width: 460px) {
    .cookie-notice-inner {
        flex-wrap: wrap;
    }
    .cookie-notice-accept {
        width: 100%;
        margin-left: 0;
    }
    .hero-art {
        height: 405px;
    }
    .packaging {
        width: 143px;
        height: 223px;
        left: calc(50% - 145px);
        top: 125px;
    }
    .packaging-front {
        padding: 20px 13px 15px;
        gap: 17px;
    }
    .packaging-side {
        width: 22px;
    }
    .packaging-top {
        height: 13px;
    }
    .package-logo {
        width: 98px;
    }
    .package-line {
        font-size: 13px;
    }
    .package-sticker {
        gap: 7px;
        padding-top: 10px;
    }
    .package-sticker > .icon {
        width: 31px;
        height: 31px;
    }
    .package-sticker > span {
        font-size: 5px;
    }
    .package-foot {
        font-size: 5px;
    }
    .product-phone {
        width: 176px;
        height: 322px;
        right: calc(50% - 143px);
        top: 53px;
        border-radius: 26px;
    }
    .phone-brand {
        padding: 10px 12px;
    }
    .phone-brand img {
        width: 72px;
    }
    .phone-visual {
        height: 79px;
    }
    .phone-visual img {
        width: 72px;
    }
    .phone-visual > span {
        font-size: 5px;
    }
    .phone-content {
        padding: 11px 11px 5px;
    }
    .phone-content > strong {
        font-size: 13px;
    }
    .phone-content > p {
        font-size: 6px;
        line-height: 1.6;
    }
    .phone-detail {
        font-size: 6px;
        padding-block: 6px;
    }
    .phone-footer {
        padding: 5px;
        font-size: 5px;
    }
    .phone-eyebrow {
        font-size: 4px;
    }
    .connection-badge {
        left: calc(50% - 30px);
        top: 200px;
        width: 42px;
        height: 42px;
    }
    .connection-badge .icon {
        width: 20px;
        height: 20px;
    }
    .art-tag {
        font-size: 6px;
        left: 13px;
        bottom: 26px;
        padding: 8px;
        gap: 5px;
    }
    .art-caption {
        font-size: 6px;
        letter-spacing: 0.9px;
        inset: 16px 16px auto;
    }
    .art-caption .tiny-cross {
        font-size: 14px;
    }
    .hero-note {
        font-size: 8px;
        gap: 12px;
    }
    .hero-actions {
        gap: 16px;
    }
    .hero-actions > .text-link {
        font-size: 10px;
        gap: 7px;
    }
    .hero h1 {
        font-size: 42px;
        letter-spacing: -2.5px;
    }
    .hero-description {
        font-size: 13px;
    }
    .category-inner > span {
        font-size: 9px;
    }
    .category-inner {
        gap: 17px 19px;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-card-large {
        grid-column: auto;
        min-height: 594px;
    }
    .feature-card-copy {
        width: 100%;
        max-width: none;
    }
    .feature-card-large p {
        max-width: 310px;
    }
    .feature-card-large .page-composition {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 27px;
        max-width: none;
        height: 265px;
    }
    .page-composition .mini-page {
        width: 185px;
    }
    .feature-card-large .mini-page-front {
        right: 7px;
        top: 61px;
    }
    .feature-card-large .mini-page-back {
        left: 14px;
        top: 72px;
    }
    .feature-card-large .feature-footnote {
        bottom: 20px;
    }
    .feature-card:not(.feature-card-large) {
        min-height: auto;
        padding: 25px;
    }
    .feature-card:not(.feature-card-large) h3 {
        font-size: 21px;
    }
    .feature-card:not(.feature-card-large) p {
        font-size: 12px;
    }
    .feature-card-compact:last-child {
        display: flex;
        grid-column: auto;
        gap: 0;
    }
    .feature-card-compact:last-child .icon-box {
        margin-bottom: 19px;
    }
    .feature-card-compact:last-child h3 {
        margin-bottom: 13px;
    }
    .link-visual {
        max-width: 230px;
    }
    .level-labels {
        font-size: 10px;
        gap: 9px;
    }
    .level-labels > span {
        padding: 6px 14px;
    }
    .industry-art {
        min-height: 344px;
    }
    .category-object {
        left: 24px;
        width: 143px;
        top: 70px;
        height: 231px;
    }
    .info-slip {
        right: 16px;
        top: 149px;
        width: 177px;
        padding: 16px;
    }
    .info-slip > span {
        font-size: 5px;
    }
    .info-slip > div {
        font-size: 8px;
    }
    .object-label {
        padding: 15px;
    }
    .object-label > strong {
        font-size: 15px;
    }
    .industry-art-top {
        font-size: 5px;
        inset: 18px 18px auto;
    }
    .industry-art-bottom {
        font-size: 6px;
        bottom: 16px;
        left: 18px;
    }
    .category-object-care {
        top: 92px;
        height: 214px;
    }
    .category-object-care .object-cap {
        left: 36px;
    }
    .category-object-apparel {
        top: 72px;
    }
    .category-object-electronics {
        top: 78px;
        height: 222px;
        width: 153px;
    }
    .category-object-electronics .object-label {
        inset: 25px 13px;
    }
    .check-list {
        font-size: 9px;
        gap: 11px 9px;
    }
    .industry-copy h3 {
        font-size: 30px;
    }
    .hosting-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .hosting-intro {
        grid-column: auto;
    }
    .hosting-section > article {
        padding-bottom: 0;
    }
    .hosting-section > article p {
        font-size: 12px;
        max-width: 350px;
    }
    .hosting-section > article > .icon {
        margin-bottom: 13px;
    }
    .hosting-section > article h3 {
        font-size: 18px;
    }
    .faq-heading > img {
        width: 69px;
    }
    .faq-heading h2 {
        font-size: 32px;
    }
    .cta-inner {
        display: block;
        position: relative;
        padding-block: 49px 51px;
    }
    .cta-inner h2 {
        font-size: 33px;
        position: relative;
        z-index: 1;
    }
    .cta-inner p:not(.eyebrow) {
        max-width: 270px;
    }
    .cta-owl {
        width: 81px;
        position: absolute;
        right: 0;
        bottom: 63px;
    }
    .cta-inner .button {
        font-size: 11px;
        gap: 20px;
        padding: 14px 16px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
    .footer-links {
        font-size: 10px;
    }
    .footer-main {
        gap: 30px 20px;
    }
    .hero-actions > .button {
        font-size: 11px;
        padding: 15px;
        gap: 15px;
    }
}
@media (max-width: 359px) {
    .container {
        width: calc(100% - 32px);
    }
    .hero h1 {
        font-size: 37px;
        letter-spacing: -2px;
    }
    .hero .eyebrow {
        font-size: 7px;
    }
    .hero-actions {
        gap: 15px;
        align-items: flex-start;
        flex-direction: column;
    }
    .hero-note {
        font-size: 7px;
        gap: 9px;
    }
    .hero-art {
        height: 382px;
    }
    .packaging {
        left: 12px;
        width: 122px;
        height: 211px;
    }
    .packaging-front {
        padding: 17px 10px;
    }
    .package-logo {
        width: 85px;
    }
    .package-line {
        font-size: 11px;
    }
    .package-sticker > .icon {
        width: 27px;
        height: 27px;
    }
    .product-phone {
        right: 17px;
        width: 158px;
        height: 308px;
        top: 55px;
    }
    .phone-brand img {
        width: 66px;
    }
    .phone-visual {
        height: 70px;
    }
    .phone-content {
        padding-inline: 10px;
    }
    .phone-content > strong {
        font-size: 12px;
    }
    .connection-badge {
        left: 119px;
        width: 37px;
        height: 37px;
    }
    .art-tag {
        font-size: 5px;
        bottom: 22px;
    }
    .category-inner > span {
        font-size: 8px;
    }
    .category-inner {
        gap: 15px;
    }
    .cta-owl {
        width: 63px;
        bottom: 65px;
    }
    .cta-inner h2 {
        font-size: 29px;
    }
    .faq-heading > img {
        width: 57px;
    }
    .faq-heading h2 {
        font-size: 29px;
    }
    .industry-art {
        min-height: 324px;
    }
    .category-object {
        left: 21px;
        width: 132px;
        height: 214px;
    }
    .info-slip {
        right: 14px;
        width: 164px;
        top: 145px;
        padding: 13px;
    }
    .category-object-care {
        top: 86px;
        height: 205px;
    }
    .category-object-care .object-cap {
        left: 30px;
    }
    .industry-art-bottom {
        font-size: 5px;
    }
    .check-list {
        grid-template-columns: 1fr;
        font-size: 10px;
    }
    .page-composition .mini-page {
        width: 164px;
    }
    .feature-card-large {
        min-height: 620px;
    }
    .feature-card-large .mini-page-back {
        left: 0;
    }
    .feature-card-large .mini-page-front {
        right: 0;
    }
    .industry-copy h3 {
        font-size: 28px;
    }
}
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important;
    }
}

/* Platform overview */
.platform-heading {
    gap: 48px;
    margin-bottom: 40px;
}
.platform-heading .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #505846;
    font-size: 10px;
    letter-spacing: 1.8px;
}
.platform-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #84934b;
}
.platform-heading h2 {
    font-size: clamp(38px, 4.2vw, 58px);
    letter-spacing: -2.8px;
    line-height: 1.07;
    margin-top: 22px;
}
.platform-heading .muted-heading {
    color: #85897a;
}
.platform-heading > p {
    max-width: 360px;
    font-size: 13px;
}
.platform-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr 1fr;
    gap: 18px;
}
.platform-card {
    min-width: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    background: #f8f8f4;
    border: 1px solid #e7e8df;
    border-radius: 20px;
    overflow: hidden;
    color: #24291f;
}
.platform-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 27px;
}
.platform-category {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.35px;
    line-height: 1.5;
    color: #5d6553;
}
.platform-category .icon {
    width: 17px;
    height: 17px;
}
.platform-number {
    font-size: 10px;
    color: #7a816e;
    font-variant-numeric: tabular-nums;
}
.platform-card h3 {
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.16;
    letter-spacing: -1px;
}
.platform-card p {
    font-size: 12px;
    line-height: 1.8;
    color: #666b60;
}
.platform-showcase {
    grid-row: span 2;
    background: #eeeee3;
    padding-bottom: 22px;
}
.platform-showcase h3 {
    font-size: 36px;
    letter-spacing: -1.5px;
}
.platform-product {
    position: relative;
    flex: 1;
    min-height: 280px;
    margin: 25px -12px 0;
    border-radius: 13px;
    overflow: hidden;
    background: #d9d0bd;
}
.platform-product > img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center 58%;
}
.platform-product figcaption {
    position: absolute;
    inset: auto 12px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fffffff0;
    border: 1px solid #ffffffa6;
    border-radius: 10px;
    box-shadow: 0 4px 20px #302b1714;
}
.platform-product figcaption > span {
    padding: 7px;
    background: #eff0e6;
    border-radius: 6px;
}
.platform-product figcaption .icon {
    width: 22px;
    height: 22px;
}
.platform-product strong {
    display: block;
    font-size: 10px;
    font-weight: 500;
}
.platform-product small {
    display: block;
    font-size: 9px;
    color: #717667;
    margin-top: 2px;
}
.platform-brand-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #686e5c;
    font-size: 9px;
}
.platform-swatches {
    display: flex;
    padding-left: 3px;
}
.platform-swatches i {
    width: 15px;
    height: 15px;
    margin-left: -3px;
    border: 2px solid #eeeee3;
    border-radius: 50%;
    background: #353f2b;
}
.platform-swatches i:nth-child(2) {
    background: #a8ad8e;
}
.platform-swatches i:nth-child(3) {
    background: #d0b995;
}
.platform-link-card {
    background: #293324;
    border-color: #293324;
    color: #f8faef;
}
.platform-link-card .platform-category {
    color: #d8e5b2;
}
.platform-link-card .platform-number {
    color: #a3af95;
}
.platform-link-card p {
    color: #c0c7b7;
}
.platform-connection {
    display: flex;
    align-items: flex-start;
    margin-top: auto;
    padding-top: 28px;
}
.platform-connection > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.platform-node {
    display: grid;
    place-items: center;
    position: relative;
    width: 55px;
    height: 55px;
    background: #ffffff0a;
    border: 1px solid #718063;
    border-radius: 13px;
}
.platform-node > .icon {
    width: 28px;
    height: 28px;
}
.platform-node b {
    position: absolute;
    right: -5px;
    top: -5px;
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--lime);
    color: #293324;
    border: 2px solid #293324;
}
.platform-node b .icon {
    width: 11px;
    height: 11px;
}
.platform-connection small {
    font-size: 9px;
    color: #c0c7b7;
    white-space: nowrap;
}
.platform-connection-line {
    flex: 1;
    border-top: 1px dashed #82926b;
    margin: 27px 9px 0;
    position: relative;
}
.platform-connection-line .icon {
    position: absolute;
    right: -3px;
    top: -8px;
    width: 15px;
    height: 15px;
    color: #b4c786;
    background: #293324;
}
.platform-levels {
    display: flex;
    align-items: center;
    padding-top: 28px;
    margin-top: auto;
}
.platform-levels span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    border: 1px solid #e0e3d5;
    border-radius: 10px;
    padding: 13px 8px;
    flex: 1;
    font-size: 10px;
    background: #fff;
}
.platform-levels .icon {
    width: 21px;
    height: 21px;
}
.platform-levels i {
    width: 12px;
    border-top: 1px solid #c9d0b9;
}
.platform-levels span:nth-of-type(2) {
    background: #e9eddf;
}
.platform-levels span:nth-of-type(3) {
    background: #e0edb0;
    border-color: #d4e29e;
}
.platform-identifiers {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: auto;
    padding-top: 25px;
}
.platform-identifiers span {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    padding: 6px 8px;
    border: 1px solid #e0e4d7;
    background: #fff;
    border-radius: 6px;
    color: #828b73;
    font: 10px/1.5 monospace;
}
.platform-identifiers b {
    color: #4e5942;
    font:
        500 9px/1.5 Inter,
        sans-serif;
}
.platform-activity {
    margin-top: auto;
    padding-top: 20px;
}
.platform-bars {
    height: 44px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    border-bottom: 1px solid #dce1d2;
}
.platform-bars i {
    flex: 1;
    height: 45%;
    background: #d7dfc6;
    border-radius: 3px 3px 0 0;
}
.platform-bars i:nth-child(3n) {
    height: 70%;
}
.platform-bars i:nth-child(4n) {
    height: 35%;
}
.platform-bars i:nth-child(5n) {
    height: 90%;
    background: #9fae7f;
}
.platform-bars i:nth-last-child(2) {
    height: 100%;
    background: #647747;
}
.platform-bars i:last-child {
    height: 75%;
    background: #a6bb70;
}
.platform-activity > span {
    display: flex;
    justify-content: space-between;
    margin-top: 7px;
    font-size: 9px;
    color: #626e52;
}
.platform-activity small {
    font-size: 8px;
    color: #7c8272;
}
.platform-team-card {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 25px 30px;
    background: #fff;
}
.platform-team-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    background: #f0f2e8;
    border-radius: 50%;
    color: #596848;
}
.platform-team-card h3 {
    font-size: 20px;
    letter-spacing: -0.6px;
    margin: 7px 0 0;
}
.platform-team-card > div:nth-child(2) {
    flex: 1.1;
}
.platform-team-card p {
    flex: 1.3;
    max-width: 390px;
}
.platform-team-roles {
    display: flex;
    gap: 6px;
    margin-left: auto;
}
.platform-team-roles span {
    padding: 5px 9px;
    border: 1px solid #e1e5d8;
    border-radius: 5px;
    color: #647050;
    font-size: 9px;
}
@media (max-width: 1100px) {
    .platform-card {
        padding: 23px;
    }
    .platform-card h3 {
        font-size: 23px;
    }
    .platform-showcase h3 {
        font-size: 32px;
    }
    .platform-category {
        font-size: 8px;
        letter-spacing: 1px;
    }
    .platform-team-roles {
        display: none;
    }
}
@media (max-width: 900px) {
    .platform-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .platform-showcase {
        grid-row: span 2;
    }
    .platform-heading {
        gap: 30px;
    }
    .platform-heading > p {
        max-width: 280px;
    }
    .platform-card {
        padding: 26px;
    }
    .platform-team-card {
        gap: 18px;
    }
    .platform-team-card h3 {
        font-size: 18px;
    }
}
@media (max-width: 600px) {
    .platform-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }
    .platform-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-bottom: 30px;
    }
    .platform-heading h2 {
        font-size: clamp(34px, 9vw, 48px);
        letter-spacing: -1.8px;
    }
    .platform-heading > p {
        max-width: 100%;
        font-size: 13px;
    }
    .platform-card {
        padding: 25px;
        border-radius: 17px;
    }
    .platform-card-top {
        margin-bottom: 23px;
    }
    .platform-card h3 {
        font-size: 28px;
    }
    .platform-card p {
        font-size: 13px;
    }
    .platform-showcase {
        grid-row: auto;
    }
    .platform-showcase h3 {
        font-size: 36px;
    }
    .platform-product {
        min-height: 370px;
        flex: auto;
    }
    .platform-brand-note {
        font-size: 9px;
    }
    .platform-team-card {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }
    .platform-team-icon {
        width: 40px;
        height: 40px;
    }
    .platform-team-card h3 {
        font-size: 21px;
    }
    .platform-team-card p {
        grid-column: 1 / -1;
    }
}

/* Hosted plans */
.pricing-page {
    color: #283022;
    padding-bottom: 80px;
}
.pricing-intro {
    padding-top: 75px;
    padding-bottom: 45px;
    text-align: center;
}
.pricing-intro > .eyebrow {
    justify-content: center;
    color: #687253;
    font-size: 10px;
}
.pricing-intro h1 {
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -3px;
    font-weight: 500;
    margin: 23px 0;
}
.pricing-intro h1 > span {
    color: #838b73;
}
.pricing-lede {
    max-width: 540px;
    margin-inline: auto;
    font-size: 15px;
    line-height: 1.8;
    color: #656d5e;
}
.pricing-reassurance {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 25px;
    color: #646e55;
    font-size: 10px;
}
.pricing-reassurance > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.pricing-reassurance .icon {
    width: 14px;
    height: 14px;
}
.billing-toggle {
    display: flex;
    width: fit-content;
    margin: 28px auto 0;
    padding: 4px;
    gap: 4px;
    border: 1px solid #d7decc;
    border-radius: 999px;
    background: #f7f8f2;
}
.billing-toggle-option {
    appearance: none;
    border: 0;
    background: transparent;
    color: #6b745e;
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.1px;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
}
.billing-toggle-option span {
    margin-left: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5d7a2c;
}
.billing-toggle-option.is-active {
    background: #2b3625;
    color: #f7faef;
}
.billing-toggle-option.is-active span {
    color: #d6f349;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 16px;
    align-items: stretch;
}
.pricing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid #e3e7da;
    background: #f7f8f2;
    border-radius: 20px;
    padding: 24px;
}
@supports (grid-template-rows: subgrid) {
    .pricing-grid {
        row-gap: 0;
    }
    .pricing-card {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 8;
    }
}
.pricing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #6f7b5b;
}
.pricing-card-top .eyebrow {
    font-size: 9px;
    letter-spacing: 1.2px;
}
.pricing-card-top > .icon {
    width: 21px;
    height: 21px;
}
.pricing-card h2 {
    font-size: 26px;
    letter-spacing: -0.8px;
    line-height: 1.2;
    margin: 20px 0 10px;
}
.pricing-description {
    color: #69725f;
    font-size: 12px;
    line-height: 1.7;
    min-height: calc(1.7em * 2);
    min-width: 0;
}
.pricing-capacity {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 27px;
}
.pricing-was {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.6px;
    line-height: 1;
    color: #9aa38d;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: #b3bca8;
}
.pricing-capacity > strong {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1.6px;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}
.pricing-capacity > strong > span:first-child {
    font-size: 30px;
    vertical-align: top;
    line-height: 1.5;
    letter-spacing: -1px;
    margin-right: 2px;
}
.pricing-capacity .js-plan-amount {
    font-size: inherit;
    vertical-align: baseline;
    letter-spacing: inherit;
    margin-right: 0;
    line-height: inherit;
}
.pricing-capacity > span {
    font-size: 10px;
    line-height: 1.6;
    color: #707962;
}
.pricing-fit {
    color: #727a68;
    font-size: 10px;
    margin-top: 10px;
}
.pricing-button {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 13px 14px;
    background: #fff;
    color: #2d3824;
    border: 1px solid #cfd7c1;
    border-radius: 8px;
    margin-top: 26px;
    font-size: 11px;
    white-space: nowrap;
}
.pricing-button:hover {
    background: #e8eedb;
    border-color: #a4b18e;
}
.pricing-checkout {
    text-align: center;
    font-size: 9px;
    color: #737c66;
    margin: 10px 0 22px;
    min-height: 1.6em;
}
.pricing-allowances {
    border-top: 1px solid #dce2d3;
    padding-top: 24px;
}
.pricing-allowances > .eyebrow {
    font-size: 8px;
    color: #707b63;
    letter-spacing: 1.1px;
}
.pricing-allowances ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 17px 0 0;
}
.pricing-allowances li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}
.pricing-allowances li > .icon {
    width: 15px;
    height: 15px;
    color: #6d8450;
}
.pricing-allowances strong {
    font-weight: 500;
}
.pricing-card-featured {
    background: #2b3625;
    border-color: #2b3625;
    color: #f7faef;
    box-shadow: 0 14px 35px -20px #263a2859;
}
.pricing-card-featured .pricing-card-top {
    color: #dfecb4;
}
.pricing-card-featured .pricing-description,
.pricing-card-featured .pricing-capacity > span,
.pricing-card-featured .pricing-fit,
.pricing-card-featured .pricing-checkout {
    color: #c4ceb8;
}
.pricing-card-featured .pricing-was {
    color: #a7b39a;
    text-decoration-color: #c3ceb4;
}
.pricing-card-featured .pricing-button {
    background: var(--lime);
    border-color: var(--lime);
    color: #25301b;
}
.pricing-card-featured .pricing-button:hover {
    background: #e4ff67;
    border-color: #e4ff67;
}
.pricing-card-featured .pricing-allowances {
    border-color: #4b5942;
}
.pricing-card-featured .pricing-allowances > .eyebrow {
    color: #bdcba9;
}
.pricing-card-featured .pricing-allowances li > .icon {
    color: #d6ee95;
}
.pricing-signup-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: #6d775f;
    margin-top: 24px;
    text-align: center;
}
.pricing-signup-note .icon {
    width: 15px;
    height: 15px;
}
.pricing-jump {
    display: flex;
    width: fit-content;
    margin: 15px auto 0;
    font-size: 11px;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.pricing-jump .icon {
    transform: rotate(90deg);
    width: 14px;
    height: 14px;
}
.pricing-included {
    padding-block: 90px 65px;
}
.pricing-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 35px;
}
.pricing-page .pricing-section-heading h2,
.pricing-questions h2 {
    font-size: 35px;
    line-height: 1.12;
    letter-spacing: -1.4px;
    margin-top: 16px;
}
.pricing-section-heading > p {
    max-width: 340px;
    color: #6a735f;
    font-size: 12px;
    line-height: 1.8;
}
.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    margin-top: 38px;
}
.pricing-benefits article {
    border-top: 1px solid #dde3d3;
    padding-top: 24px;
}
.pricing-benefit-icon {
    display: grid;
    place-items: center;
    width: 41px;
    height: 41px;
    background: #eef2e6;
    border: 1px solid #e4ead9;
    color: #66794c;
    border-radius: 10px;
}
.pricing-benefit-icon .icon {
    width: 21px;
    height: 21px;
}
.pricing-benefits h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.4px;
    line-height: 1.4;
    margin-top: 18px;
}
.pricing-benefits p {
    font-size: 12px;
    line-height: 1.8;
    color: #717a65;
    margin-top: 10px;
}
.pricing-start {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 30px;
    background: #f4f5ee;
    border: 1px solid #e6e9df;
    border-radius: 16px;
    padding: 32px;
}
.pricing-start h2 {
    font-size: 24px;
    letter-spacing: -0.7px;
    margin: 12px 0 9px;
}
.pricing-start p {
    font-size: 11px;
    line-height: 1.7;
    color: #758068;
}
.pricing-start ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pricing-start li > span {
    color: #758b50;
    font-size: 10px;
    font-variant-numeric: tabular-nums;
}
.pricing-start h3 {
    font-size: 12px;
    font-weight: 500;
    margin: 12px 0 7px;
}
.pricing-questions {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    padding-block: 85px 55px;
}
.pricing-questions > div > .text-link {
    margin-top: 25px;
    font-size: 11px;
    color: #697a4f;
}
.pricing-questions .faq-item summary {
    font-size: 14px;
}
.pricing-questions .faq-item > p {
    font-size: 12px;
    line-height: 1.85;
    color: #6e7862;
}
.pricing-self-hosted {
    display: flex;
    align-items: center;
    gap: 20px;
    border-block: 1px solid #e2e7d8;
    padding-block: 28px;
}
.pricing-self-hosted > .pricing-benefit-icon {
    flex-shrink: 0;
}
.pricing-self-hosted > div {
    flex: 1;
}
.pricing-self-hosted h2 {
    font-size: 19px;
    letter-spacing: -0.4px;
    margin: 0 0 8px;
}
.pricing-self-hosted p {
    max-width: 620px;
    font-size: 11px;
    line-height: 1.8;
    color: #758067;
}
.pricing-self-hosted > .text-link {
    font-size: 11px;
}
.pricing-final {
    margin-top: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 40px 45px;
    background: #eaf0d7;
    border: 1px solid #e2e9cd;
    border-radius: 20px;
}
.pricing-final h2 {
    font-size: 38px;
    letter-spacing: -1.5px;
    line-height: 1.12;
    margin-top: 15px;
}
.pricing-final > div:last-child {
    text-align: center;
}
.pricing-final .button {
    background: #2b3625;
    color: #f6f9ed;
    border: 1px solid #2b3625;
    border-radius: 8px;
    font-size: 12px;
}
.pricing-final .button:hover {
    background: #414f36;
}
.pricing-final p:not(.eyebrow) {
    font-size: 10px;
    color: #6f7c59;
    margin: 13px 0 8px;
}
.pricing-sign-in {
    font-size: 10px;
    color: #52643a;
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 1100px) {
    .pricing-card {
        padding: 22px;
    }
    .pricing-card h2 {
        margin-top: 20px;
    }
    .pricing-start {
        grid-template-columns: 1fr;
    }
    .pricing-start ol {
        gap: 30px;
    }
    .pricing-benefits {
        gap: 22px;
    }
}
@media (max-width: 900px) {
    .pricing-grid,
    .plan-tiers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    @supports (grid-template-rows: subgrid) {
        .pricing-card {
            margin-bottom: 16px;
        }
        .plan-tier {
            padding-bottom: 22px;
        }
    }
}
@media (max-width: 760px) {
    .pricing-intro {
        padding-top: 48px;
        padding-bottom: 32px;
    }
    .pricing-intro h1 {
        font-size: 46px;
        letter-spacing: -2px;
    }
    .pricing-lede {
        font-size: 14px;
    }
    .pricing-reassurance {
        gap: 10px 18px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        column-gap: 18px;
        row-gap: 18px;
    }
    @supports (grid-template-rows: subgrid) {
        .pricing-grid {
            row-gap: 0;
        }
    }
    .plan-tiers {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 30px;
    }
    .pricing-description {
        min-height: 0;
        max-width: 400px;
    }
    .pricing-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pricing-section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .pricing-section-heading > p {
        max-width: 100%;
    }
    .pricing-included {
        padding-block: 60px 40px;
    }
    .pricing-questions {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 60px;
    }
    .pricing-start {
        padding: 25px;
    }
    .pricing-start ol {
        gap: 20px;
    }
    .pricing-self-hosted {
        flex-wrap: wrap;
    }
    .pricing-self-hosted > .text-link {
        margin-left: 61px;
    }
    .pricing-final {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
    }
    .pricing-final > div:last-child {
        text-align: left;
    }
}
@media (max-width: 460px) {
    .pricing-intro h1 {
        font-size: 39px;
        letter-spacing: -1.8px;
    }
    .pricing-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        font-size: 10px;
    }
    .pricing-card {
        padding: 25px;
    }
    .pricing-signup-note {
        align-items: flex-start;
        text-align: left;
        padding-inline: 5px;
    }
    .pricing-signup-note .icon {
        margin-top: 2px;
    }
    .pricing-start ol {
        grid-template-columns: 1fr;
    }
    .pricing-start li {
        display: flex;
        gap: 15px;
    }
    .pricing-start li > span {
        padding-top: 10px;
    }
    .pricing-start h3 {
        margin-top: 7px;
    }
    .pricing-benefits {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .pricing-page .pricing-section-heading h2,
    .pricing-questions h2 {
        font-size: 30px;
    }
    .pricing-questions .faq-item summary {
        font-size: 13px;
    }
    .pricing-final {
        padding: 25px;
    }
    .pricing-final h2 {
        font-size: 32px;
    }
    .pricing-self-hosted {
        align-items: flex-start;
    }
    .pricing-self-hosted h2 {
        font-size: 17px;
        line-height: 1.3;
    }
}
