:root {
    --ink: #111111;
    --muted: #6b6b67;
    --line: #deded9;
    --paper: #ffffff;
    --soft: #ffffff;
    --blue: #126cf3;
    --shell: 1160px;
    --type-body: 12px;
    --type-card-title: 15px;
    --type-section-title: 32px;
    --type-section-title-mobile: 26px;
}

/*
 * 首页布局与交互均在本文件维护
 * 公共 header、footer 和背景点缀来自 selleros-usinc-theme.css
 */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

body,
button,
a {
    letter-spacing: 0;
}

a {
    color: inherit;
}

button {
    font: inherit;
}

img {
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

[id] {
    scroll-margin-top: 80px;
}

.site-shell {
    width: min(var(--shell), calc(100% - 48px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 34px;
    align-items: center;
    min-height: 68px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #12305f;
    text-decoration: none;
    white-space: nowrap;
}

.site-logo-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    image-rendering: auto;
}

.site-logo-word {
    color: currentColor;
    font-family: "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0;
    text-rendering: geometricPrecision;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.site-nav a,
.site-login,
.site-start {
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a {
    padding-block: 24px;
}

.site-nav a:hover,
.site-login:hover {
    color: var(--muted);
}

.site-nav a[aria-current="page"] {
    box-shadow: inset 0 -2px var(--ink);
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-login {
    padding: 10px 2px;
}

.site-start {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
}

.site-start:hover {
    background: #333;
}

.site-menu-button {
    display: none;
    width: 38px;
    height: 38px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--ink);
    border-radius: 2px;
    background: #fff;
    color: var(--ink);
}

.site-mobile-nav {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    padding: 10px 20px 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.site-mobile-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: var(--type-body);
    font-weight: 650;
    text-decoration: none;
}

.site-mobile-nav a:last-child {
    border-bottom: 0;
}

.site-mobile-nav a[aria-current="page"] {
    color: #118473;
}

.lead-section {
    padding: 28px 0 132px;
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 3.15fr) minmax(220px, 1fr);
    gap: 22px;
    align-items: start;
}

.lead-story {
    min-width: 0;
}

.lead-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.52;
    border: 1px solid var(--line);
    background: #fff;
}

.lead-media > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-story:hover .lead-media > img {
    transform: scale(1.012);
}

.lead-story h1 {
    margin: 18px 0 8px;
    font-size: 38px;
    font-weight: 560;
    line-height: 1.16;
}

.lead-story > p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.lead-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.lead-actions a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

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

.lead-primary:hover {
    background: #333;
}

.lead-secondary:hover {
    background: var(--soft);
}

.lead-rail {
    display: grid;
    gap: 28px;
}

.rail-story {
    display: block;
    min-width: 0;
    color: var(--ink);
    text-decoration: none;
}

.rail-media,
.rail-sites {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    aspect-ratio: 1.43;
    border: 1px solid var(--line);
    background: #fff;
}

.function-shot {
    position: relative;
    overflow: hidden;
}

.function-shot > img {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 106%;
    object-fit: cover;
    object-position: center bottom;
}

.rail-story h2 {
    margin: 9px 0 4px;
    font-size: 14px;
    font-weight: 620;
    line-height: 1.35;
}

.rail-story p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
}

.rail-sites {
    position: relative;
    overflow: hidden;
}

.mini-site-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6%);
    transition: opacity 360ms ease, transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mini-site-slide.is-active {
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mini-site-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.mini-site-controls {
    position: absolute;
    z-index: 5;
    right: 8px;
    bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px;
    border-radius: 2px;
    background: rgba(15, 15, 15, 0.86);
    color: #fff;
}

.mini-site-controls button {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.mini-site-controls button:hover {
    background: rgba(255, 255, 255, 0.14);
}

.mini-site-controls > span {
    min-width: 34px;
    text-align: center;
    font-size: 11px;
}

.signature-sites {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.managed-section {
    padding: 112px 0 120px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
}

.managed-heading {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr) minmax(280px, 0.58fr);
    gap: 44px;
    align-items: start;
}

.managed-heading > p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

.managed-heading h2 {
    max-width: 650px;
    margin: 0;
    font-size: 36px;
    font-weight: 520;
    line-height: 1.23;
}

.managed-heading > span {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.75;
}

.managed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 66px;
}

.managed-feature {
    min-width: 0;
}

.managed-media {
    overflow: hidden;
    aspect-ratio: 1.55;
    border: 1px solid var(--line);
    background: #fff;
}

.managed-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    transition: transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.managed-feature:hover .managed-media img {
    transform: scale(1.012);
}

.managed-eyebrow {
    margin: 24px 0 0;
    color: #4b4b47;
    font-size: 10px;
    font-weight: 700;
}

.managed-feature h3 {
    margin: 10px 0 0;
    font-size: 28px;
    font-weight: 520;
}

.managed-copy {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.78;
}

.managed-feature ul {
    display: grid;
    gap: 0;
    margin: 26px 0 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.managed-feature li {
    position: relative;
    padding: 13px 0 13px 18px;
    border-bottom: 1px solid var(--line);
    color: #4b4b47;
    font-size: 10px;
    line-height: 1.55;
}

.managed-feature li::before {
    position: absolute;
    top: 19px;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--ink);
    content: "";
}

.compliance-section {
    margin-bottom: 0;
    padding: 106px 0 112px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.compliance-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    gap: 96px;
    align-items: end;
    margin-bottom: 52px;
}

.compliance-head > div:first-child > p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.compliance-head h2 {
    max-width: 650px;
    margin: 0;
    font-size: 36px;
    font-weight: 560;
    line-height: 1.2;
}

.compliance-head > div:last-child > p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.compliance-links {
    display: flex;
    gap: 22px;
    margin-top: 20px;
}

.compliance-links a {
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #cecec8;
    border-left: 1px solid #cecec8;
}

.compliance-item {
    min-height: 208px;
    padding: 24px 22px;
    border-right: 1px solid #cecec8;
    border-bottom: 1px solid #cecec8;
}

.compliance-item > .iconify {
    width: 28px;
    height: 28px;
    color: #2c2c2a;
}

.compliance-item h3 {
    margin: 42px 0 10px;
    font-size: 14px;
    font-weight: 650;
}

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

.story-section {
    padding-bottom: 128px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.section-label h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.section-label-copy p {
    max-width: 560px;
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.section-label a {
    border-bottom: 1px solid transparent;
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
}

.section-label a:hover {
    border-color: currentColor;
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 56px;
}

.update-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.update-thumb {
    display: grid;
    width: 104px;
    aspect-ratio: 1;
    place-items: center;
}

.update-thumb .iconify {
    width: 34px;
    height: 34px;
    color: rgba(17, 17, 17, 0.78);
}

.update-item h3 {
    margin: 0 0 7px;
    font-size: 13px;
    font-weight: 650;
}

.update-item p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.tone-sky {
    background: #d8eaf2;
}

.tone-mint {
    background: #cee9df;
}

.tone-sand {
    background: #eadfce;
}

.tone-violet {
    background: #ddd7ea;
}

.tone-blue {
    background: #cfdcf5;
}

.tone-lime {
    background: #dceaa9;
}

.tone-rose {
    background: #ead1d8;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.story-card {
    min-width: 0;
}

.story-square {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    background: #fff;
}

.story-square > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
    transition: transform 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.story-card:hover .story-square > img {
    transform: scale(1.014);
}

.story-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    color: rgba(17, 17, 17, 0.8);
    transform: translate(-50%, -50%);
}

.story-card h3 {
    margin: 12px 0 7px;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.35;
}

.story-card p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.6;
}

.foundation-section {
    padding: 112px 0 118px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.foundation-more {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #cecec8;
}

.foundation-more strong,
.foundation-more span {
    font-size: 10px;
    line-height: 1.5;
}

.foundation-more strong {
    margin-right: 10px;
}

.foundation-more span {
    color: var(--muted);
}

.extension-section {
    padding: 112px 0 124px;
}

.extension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.extension-grid .story-square {
    aspect-ratio: 1.45;
}

.site-cta {
    padding: 112px 0;
}

.site-cta-inner {
    display: grid;
    min-height: 300px;
    place-items: center;
    align-content: center;
    gap: 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    text-align: center;
}

.site-cta h2 {
    margin: 0;
    font-size: var(--type-section-title);
    font-weight: 520;
}

.site-cta p {
    margin: -12px 0 0;
    color: var(--muted);
    font-size: var(--type-body);
}

.site-cta a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    border-radius: 999px;
    background: #e4e4e0;
    font-size: var(--type-body);
    font-weight: 650;
    text-decoration: none;
}

.site-cta a:hover {
    background: var(--ink);
    color: #fff;
}

.site-footer {
    padding: 62px 0 0;
    background: #fff;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 0.75fr);
    gap: 42px;
}

.site-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #12305f;
    text-decoration: none;
    white-space: nowrap;
}

.site-footer-brand p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: var(--type-body);
}

.site-footer nav {
    display: grid;
    align-content: start;
    gap: 9px;
}

.site-footer nav strong {
    margin-bottom: 7px;
    font-size: var(--type-body);
}

.site-footer nav a {
    width: max-content;
    max-width: 100%;
    color: #464643;
    font-size: var(--type-body);
    line-height: 1.4;
    text-decoration: none;
}

.site-footer nav a:hover {
    color: var(--muted);
}

.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 62px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: var(--type-body);
}

.site-footer-bottom a {
    color: inherit;
    text-decoration: none;
}

.site-footer-bottom a:hover {
    color: var(--ink);
}

.site-reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .lead-grid {
        grid-template-columns: minmax(0, 2.3fr) minmax(210px, 1fr);
    }

    .lead-story h1 {
        font-size: 32px;
    }

    .updates-grid {
        column-gap: 28px;
    }

    .compliance-head {
        gap: 48px;
    }

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

    .managed-heading {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .managed-heading > span {
        grid-column: 2;
    }
}

@media (max-width: 760px) {
    [id] {
        scroll-margin-top: 70px;
    }

    .site-shell {
        width: calc(100% - 28px);
    }

    .site-header-inner {
        grid-template-columns: 1fr auto;
        min-height: 64px;
    }

    .site-nav,
    .site-login,
    .site-start {
        display: none;
    }

    .site-menu-button {
        display: grid;
    }

    .lead-section {
        padding: 16px 0 88px;
    }

    .lead-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .lead-media {
        aspect-ratio: 1.5;
    }

    .lead-story h1 {
        font-size: 31px;
    }

    .lead-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 14px;
    }

.rail-media,
    .rail-sites {
        aspect-ratio: 1.25;
    }

    .updates-section,
    .story-section {
        padding-bottom: 90px;
    }

    .managed-section {
        padding: 80px 0 88px;
    }

    .managed-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .managed-heading h2 {
        font-size: 30px;
    }

    .managed-heading > span {
        grid-column: auto;
    }

    .managed-grid {
        grid-template-columns: 1fr;
        gap: 58px;
        margin-top: 46px;
    }

    .managed-feature h3 {
        font-size: 25px;
    }

    .compliance-section {
        margin-bottom: 90px;
        padding: 76px 0 82px;
    }

    .compliance-head {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 38px;
    }

    .compliance-head h2 {
        font-size: 30px;
    }

    .compliance-item {
        min-height: 180px;
    }

    .updates-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .foundation-section,
    .extension-section {
        padding-top: 82px;
        padding-bottom: 90px;
    }

    .foundation-more {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 18px;
    }

    .foundation-more strong {
        grid-column: 1 / -1;
    }

    .extension-grid {
        grid-template-columns: 1fr;
    }

    .site-cta {
        padding: 78px 0;
    }

    .site-cta-inner {
        min-height: 230px;
    }

    .site-cta h2 {
        font-size: var(--type-section-title-mobile);
    }

    .site-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 24px;
    }

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

@media (max-width: 440px) {
    .lead-story h1 {
        font-size: 28px;
    }

    .update-item {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 14px;
    }

    .update-thumb {
        width: 88px;
    }

    .compliance-grid {
        grid-template-columns: 1fr;
    }

    .compliance-item {
        min-height: 158px;
    }

    .compliance-item h3 {
        margin-top: 30px;
    }

    .site-footer-bottom {
        flex-direction: column;
        margin-top: 44px;
    }
}

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

    .lead-media > img,
    .story-square > img,
    .mini-site-slide,
    .storefront-slide img,
    .storefront-progress span,
    .site-reveal {
        transition: none;
    }

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

/* Minimal product homepage */
.home-minimal {
    background: #fff;
}

.home-minimal .site-header {
    background: rgba(255, 255, 255, 0.98);
}

.minimal-hero {
    padding: 92px 0 96px;
    border-bottom: 1px solid var(--line);
}

.minimal-hero-grid {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    gap: 92px;
    align-items: center;
}

.minimal-kicker {
    margin: 0 0 20px;
    color: #118473;
    font-size: var(--type-body);
    font-weight: 750;
}

.minimal-hero h1 {
    max-width: 540px;
    margin: 0;
    font-size: 46px;
    font-weight: 560;
    line-height: 1.2;
}

.minimal-lead {
    max-width: 510px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

.minimal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.minimal-actions a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid var(--ink);
    border-radius: 2px;
    font-size: var(--type-body);
    font-weight: 700;
    text-decoration: none;
}

.minimal-action-primary {
    background: #118473;
    border-color: #118473 !important;
    color: #fff;
}

.minimal-action-primary:hover {
    background: #0d6f61;
}

.minimal-action-secondary:hover {
    background: #f7f7f5;
}

.minimal-hero-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: var(--type-body);
}

.minimal-hero-note .iconify {
    color: #118473;
}

.minimal-proof {
    min-width: 0;
    border: 1px solid #d8d8d3;
    background: #fff;
}

.proof-label {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    border-bottom: 1px solid var(--line);
}

.proof-label span {
    color: #118473;
    font-size: var(--type-body);
    font-weight: 750;
}

.proof-label b {
    margin-left: auto;
    font-size: var(--type-body);
    font-weight: 650;
}

.proof-label .proof-privacy-note {
    display: inline-flex;
    flex: 0 0 auto;
    gap: 5px;
    align-items: center;
    padding: 6px 8px;
    border: 1px solid #d8d8d3;
    background: #f4f4f1;
    color: #4c4c48;
    font-size: var(--type-body);
    font-weight: 650;
    line-height: 1;
}

.proof-privacy-note .iconify {
    width: 14px;
    height: 14px;
}

.managed-demo {
    --type-body: 11px;
    padding: 18px;
    background: #f5f6f4;
    font-size: 11px;
    line-height: 1.45;
}

.managed-demo-toolbar {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid #d8d8d3;
    border-bottom: 0;
    background: #fff;
}

.managed-demo-toolbar > div {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.managed-demo-toolbar > div > .iconify {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: #118473;
}

.managed-demo-toolbar > div > div {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.managed-demo-toolbar small,
.managed-demo-toolbar > span {
    color: var(--muted);
    font-size: var(--type-body);
}

.managed-demo-toolbar strong {
    overflow: hidden;
    font-size: var(--type-body);
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.managed-demo-toolbar > span {
    flex: 0 0 auto;
}

.managed-demo-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    border: 1px solid #d8d8d3;
    border-bottom: 0;
    background: #f7f8f6;
}

.managed-demo-scope span {
    padding: 4px 7px;
    border: 1px solid #deded9;
    background: #fff;
    color: #575752;
    font-size: var(--type-body);
    line-height: 1.2;
}

.managed-demo-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d8d8d3;
    border-left: 1px solid #d8d8d3;
}

.managed-demo-metrics article {
    display: grid;
    min-width: 0;
    min-height: 88px;
    align-content: start;
    gap: 6px;
    padding: 13px 14px;
    border-right: 1px solid #d8d8d3;
    border-bottom: 1px solid #d8d8d3;
    background: #fff;
}

.managed-demo-metrics small,
.demo-subpanel small {
    color: var(--muted);
    font-size: var(--type-body);
}

.managed-demo-metrics strong {
    overflow: hidden;
    font-size: var(--type-body);
    font-weight: 680;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.demo-status {
    color: #5e5e59;
    font-size: var(--type-body);
}

.demo-status-positive {
    color: #118473;
}

.demo-status-warning {
    color: #a26115;
}

.operations-demo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 12px;
    margin-top: 12px;
}

.demo-subpanel {
    min-width: 0;
    border: 1px solid #d8d8d3;
    background: #fff;
}

.demo-subpanel-head {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 13px;
    border-bottom: 1px solid #e2e2de;
}

.demo-subpanel-head strong {
    font-size: var(--type-body);
    font-weight: 700;
}

.demo-subpanel-head > span {
    color: var(--muted);
    font-size: var(--type-body);
}

.operations-issue-list {
    display: grid;
    margin: 0;
    padding: 0;
    list-style: none;
}

.operations-issue-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 9px;
    align-items: center;
    min-height: 57px;
    padding: 9px 12px;
    border-bottom: 1px solid #ecece8;
    font-size: var(--type-body);
}

.operations-issue-list li:last-child {
    border-bottom: 0;
}

.operations-issue-list .iconify {
    width: 18px;
    height: 18px;
    color: #118473;
}

.operations-issue-list div {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.operations-issue-list strong {
    overflow: hidden;
    font-size: var(--type-body);
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operations-issue-list small {
    overflow: hidden;
    color: var(--muted);
    font-size: var(--type-body);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.operations-health-list em {
    min-width: 28px;
    padding: 4px 5px;
    border: 1px solid #d8d8d3;
    color: #4a4a46;
    font-size: var(--type-body);
    font-style: normal;
    font-weight: 700;
    text-align: center;
}

.strategy-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 12px;
    border: 1px solid #d8d8d3;
}

.strategy-options button {
    appearance: none;
    padding: 8px 5px;
    border-right: 1px solid #d8d8d3;
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    background: #fff;
    color: var(--muted);
    font-size: var(--type-body);
    text-align: center;
    cursor: pointer;
}

.strategy-options button:last-child {
    border-right: 0;
}

.strategy-options button:hover {
    background: #f1f4f2;
    color: var(--ink);
}

.strategy-options button:focus-visible {
    position: relative;
    z-index: 1;
    outline: 2px solid #118473;
    outline-offset: -2px;
}

.strategy-options button.is-selected {
    background: #118473;
    color: #fff;
    font-weight: 700;
}

.strategy-plan-stack {
    min-height: 316px;
}

.strategy-plan-summary {
    padding: 2px 12px 10px;
}

.strategy-plan-summary > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.strategy-plan-summary strong {
    font-size: var(--type-body);
}

.strategy-plan-summary span {
    padding: 3px 6px;
    background: #181a19;
    color: #fff;
    font-size: var(--type-body);
    font-weight: 650;
    line-height: 1.2;
    white-space: nowrap;
}

.strategy-plan-summary p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.55;
}

.strategy-plan-facts {
    display: grid;
    margin: 0 12px 8px;
    border-top: 1px solid #ecece8;
}

.strategy-plan-facts div {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 8px;
    padding: 7px 0;
    border-bottom: 1px solid #ecece8;
}

.strategy-plan-facts dt,
.strategy-plan-facts dd {
    margin: 0;
    font-size: var(--type-body);
    line-height: 1.45;
}

.strategy-plan-facts dt {
    color: var(--muted);
}

.strategy-plan-facts dd {
    color: #393936;
}

.execution-list {
    display: grid;
    padding: 0 12px 10px;
}

.execution-list > div {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 35px;
    border-bottom: 1px solid #ecece8;
}

.execution-list > div:last-child {
    border-bottom: 0;
}

.execution-list i,
.plan-running i {
    width: 7px;
    height: 7px;
    border: 1px solid #9c9c96;
    border-radius: 50%;
}

.execution-list i.is-done,
.plan-running i {
    border-color: #118473;
    background: #118473;
}

.execution-list i.is-running {
    border-color: #c9872f;
    background: #c9872f;
}

.execution-list span,
.execution-list em {
    overflow: hidden;
    font-size: var(--type-body);
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.execution-list em {
    color: var(--muted);
}

.managed-demo-workflow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 12px;
    border: 1px solid #d8d8d3;
    background: #fff;
}

.managed-demo-workflow > span {
    position: relative;
    display: grid;
    min-width: 0;
    grid-template-columns: 10px minmax(0, 1fr);
    gap: 3px 8px;
    align-content: center;
    min-height: 62px;
    padding: 9px 12px;
    border-right: 1px solid #e2e2de;
}

.managed-demo-workflow > span:last-child {
    border-right: 0;
}

.managed-demo-workflow i {
    grid-row: 1 / 3;
    width: 8px;
    height: 8px;
    align-self: center;
    border: 1px solid #aaa9a3;
    border-radius: 50%;
}

.managed-demo-workflow .is-complete i {
    border-color: #118473;
    background: #118473;
}

.managed-demo-workflow .is-current {
    background: #f1f7f5;
}

.managed-demo-workflow .is-current i {
    border: 2px solid #118473;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(17, 132, 115, 0.12);
}

.managed-demo-workflow b,
.managed-demo-workflow small {
    overflow: hidden;
    font-size: var(--type-body);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.managed-demo-workflow b {
    font-weight: 680;
}

.managed-demo-workflow small {
    color: var(--muted);
}

.advertising-plan-panel {
    margin-top: 12px;
}

.advertising-plan-panel .demo-subpanel-head > div {
    display: grid;
    gap: 3px;
}

.plan-running {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #118473 !important;
    font-weight: 650;
}

.advertising-role-tabs {
    margin-bottom: 0;
}

.advertising-plan-stack {
    min-height: 410px;
    margin: 0 12px 12px;
    border: 1px solid #d8d8d3;
}

.advertising-role-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 14px;
    align-items: center;
    min-height: 44px;
    padding: 9px 12px;
    border-bottom: 1px solid #e2e2de;
}

.advertising-role-summary strong,
.advertising-role-summary span {
    font-size: var(--type-body);
}

.advertising-role-summary span {
    color: var(--muted);
}

.advertising-target-table {
    display: grid;
}

.advertising-target-head,
.advertising-target-row {
    display: grid;
    grid-template-columns: minmax(118px, 1.15fr) 82px 94px minmax(130px, 1fr) 138px;
    gap: 10px;
    align-items: center;
    padding: 8px 11px;
}

.advertising-target-head {
    border-bottom: 1px solid #ecece8;
    background: #f7f8f6;
}

.advertising-target-head span {
    color: var(--muted);
    font-size: var(--type-body);
}

.advertising-target-head span:last-child {
    text-align: right;
}

.advertising-target-row {
    min-height: 50px;
    border-bottom: 1px solid #ecece8;
}

.advertising-target-row strong,
.advertising-target-row span,
.advertising-target-row em,
.advertising-target-row b,
.advertising-target-row small {
    font-size: var(--type-body);
}

.advertising-target-row > strong {
    display: grid;
    gap: 3px;
    font-weight: 650;
}

.advertising-target-row > strong small {
    color: var(--muted);
    font-weight: 500;
}

.advertising-review,
.advertising-coverage {
    width: fit-content;
    padding: 4px 6px;
    border: 1px solid #d8d8d3;
    color: #565650;
    line-height: 1.2;
}

.advertising-review.is-positive {
    border-color: #a8d2c7;
    background: #eff8f5;
    color: #0d715f;
}

.advertising-review.is-warning {
    border-color: #e2c7a0;
    background: #fff7e9;
    color: #925f18;
}

.advertising-evidence {
    display: grid;
    gap: 3px;
    color: var(--muted);
    line-height: 1.4;
}

.advertising-evidence b {
    color: #118473;
    font-weight: 680;
}

.advertising-evidence small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.advertising-bids {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px;
    align-items: center;
    text-align: right;
}

.advertising-bids small {
    color: var(--muted);
}

.advertising-bids em {
    color: #118473;
    font-style: normal;
    font-weight: 700;
}

.advertising-bids b {
    grid-column: 1 / -1;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}

.advertising-bid-policy {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 10px 12px;
    border-top: 1px solid #ecece8;
    background: #f7f8f6;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.5;
}

.advertising-bid-policy strong {
    flex: 0 0 auto;
    color: var(--ink);
}

.advertising-adjustments {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid #e2e2de;
}

.advertising-adjustments article {
    display: grid;
    min-width: 0;
    min-height: 94px;
    align-content: start;
    gap: 5px;
    padding: 13px;
    border-right: 1px solid #e2e2de;
}

.advertising-adjustments article:last-child {
    border-right: 0;
}

.advertising-adjustments .iconify {
    width: 17px;
    height: 17px;
    margin-bottom: 7px;
    color: #118473;
}

.advertising-adjustments small {
    color: var(--muted);
    font-size: var(--type-body);
}

.advertising-adjustments strong {
    overflow: hidden;
    font-size: var(--type-body);
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.daypart-demo {
    padding: 13px;
}

.daypart-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.daypart-demo-head > div {
    display: grid;
    gap: 3px;
}

.daypart-demo-head strong,
.daypart-demo-head span,
.daypart-demo-summary strong,
.daypart-demo-summary span {
    font-size: var(--type-body);
}

.daypart-demo-head span,
.daypart-demo-summary span {
    color: var(--muted);
}

.daypart-demo-summary {
    flex: 0 0 auto;
    text-align: right;
}

.daypart-demo-summary strong {
    color: #118473;
    font-weight: 680;
}

.daypart-bars {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 6px;
    min-height: 116px;
    margin-top: 13px;
}

.daypart-bars > span {
    display: grid;
    min-width: 0;
    grid-template-rows: 54px auto auto auto;
    gap: 3px;
    align-items: end;
    padding: 6px 5px;
    border: 1px solid #e2e2de;
    background: #f8f9f7;
}

.daypart-bars i {
    display: block;
    width: 100%;
    height: var(--bar-level);
    min-height: 8px;
    background: #118473;
    opacity: 0.86;
}

.daypart-bars b,
.daypart-bars small,
.daypart-bars em {
    overflow: hidden;
    font-size: var(--type-body);
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.daypart-bars b {
    color: #118473;
    font-weight: 700;
}

.daypart-bars small,
.daypart-bars em {
    color: var(--muted);
}

.daypart-bars em {
    font-style: normal;
}

.minimal-trust {
    border-bottom: 1px solid var(--line);
}

.minimal-trust-inner {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    align-items: center;
    min-height: 64px;
}

.minimal-trust-inner .iconify {
    color: #118473;
}

.minimal-trust-inner strong {
    font-size: var(--type-body);
}

.minimal-trust-inner p {
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    text-align: right;
}

.minimal-core {
    padding: 112px 0 120px;
    border-bottom: 1px solid var(--line);
}

.minimal-section-heading {
    max-width: 650px;
    margin: 0 auto 56px;
    text-align: center;
}

.minimal-section-heading > p {
    margin: 0 0 14px;
    color: #118473;
    font-size: var(--type-body);
    font-weight: 750;
}

.minimal-section-heading h2 {
    margin: 0;
    font-size: var(--type-section-title);
    font-weight: 550;
    line-height: 1.3;
}

.minimal-section-description {
    max-width: 590px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.minimal-core-list {
    max-width: 790px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.minimal-core-item {
    display: grid;
    grid-template-columns: 70px 44px minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    min-height: 108px;
    border-bottom: 1px solid var(--line);
}

.minimal-core-number {
    color: #118473;
    font-size: 25px;
    font-weight: 450;
}

.minimal-core-icon {
    width: 25px;
    height: 25px;
    color: #343431;
}

.minimal-core-item > div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
}

.minimal-core-item h3 {
    margin: 0;
    font-size: var(--type-card-title);
    font-weight: 680;
}

.minimal-core-item p {
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.7;
}

.minimal-emphasis {
    max-width: 790px;
    margin: 34px auto 0;
    padding: 18px 20px;
    border-left: 2px solid #118473;
    background: #f7faf9;
    color: #30302d;
    font-size: var(--type-body);
    font-weight: 650;
    line-height: 1.7;
}

.minimal-process {
    padding: 112px 0;
    border-bottom: 1px solid var(--line);
}

.minimal-process-grid {
    display: grid;
    grid-template-columns: minmax(330px, 0.78fr) minmax(0, 1.22fr);
    gap: 96px;
    align-items: center;
}

.minimal-process-copy h2 {
    margin: 0;
    font-size: var(--type-section-title);
    font-weight: 550;
    line-height: 1.4;
    white-space: normal;
}

.minimal-process-copy > p:not(.minimal-kicker) {
    max-width: 500px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.minimal-process-copy ul {
    display: grid;
    gap: 13px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.minimal-process-copy li {
    position: relative;
    padding-left: 19px;
    color: #484844;
    font-size: var(--type-body);
    line-height: 1.6;
}

.minimal-process-copy li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 7px;
    height: 7px;
    border: 1px solid #118473;
    border-radius: 50%;
    content: "";
}

.minimal-feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.minimal-feature-tags span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    color: #4f4f4a;
    font-size: var(--type-body);
}

.minimal-process-emphasis {
    max-width: none;
    margin-top: 66px;
}

.minimal-managed {
    padding: 112px 0;
    border-bottom: 1px solid var(--line);
}

.minimal-managed-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 920px;
    margin: 0 auto;
}

.minimal-managed-grid article {
    min-height: 190px;
    padding: 26px 28px;
    border: 1px dashed var(--line);
    transition:
        border-color 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.minimal-managed-grid .iconify {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
}

.minimal-managed-grid h3 {
    margin: 18px 0 7px;
    font-size: var(--type-card-title);
    font-weight: 680;
}

.minimal-managed-grid p {
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.minimal-workspace {
    padding: 112px 0;
    border-bottom: 1px solid var(--line);
}

.minimal-workspace-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.5fr);
    gap: clamp(44px, 6vw, 88px);
    align-items: center;
}

.workspace-copy {
    min-width: 0;
}

.workspace-copy h2 {
    max-width: none;
    margin: 18px 0 22px;
    font-size: var(--type-section-title);
    font-weight: 640;
    line-height: 1.4;
    white-space: normal;
}

.workspace-lead {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.8;
}

.workspace-points {
    display: grid;
    gap: 10px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.workspace-points li {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    padding: 11px 13px;
    border: 1px dashed var(--line);
    border-radius: 6px;
    color: #343431;
    font-size: var(--type-body);
    line-height: 1.6;
    transition:
        border-color 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.workspace-points .iconify {
    width: 34px;
    height: 34px;
    padding: 8px;
    border-radius: 4px;
}

.workspace-visual {
    min-width: 0;
    margin: 0;
}

.workspace-screen {
    position: relative;
    overflow: hidden;
    border: 1px solid #d9d9d4;
    background: #eef1f2;
    box-shadow: 0 26px 70px rgba(22, 28, 30, 0.12);
}

.workspace-screen img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1366 / 768;
    object-fit: contain;
}

.workspace-redacted-badge {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 14px;
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(12, 12, 11, 0.76);
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 650;
    line-height: 1;
}

.workspace-redacted-badge .iconify {
    width: 12px;
    height: 12px;
}

.workspace-visual figcaption {
    margin-top: 12px;
    color: #6c6c66;
    font-size: var(--type-body);
    line-height: 1.6;
}

.minimal-basics {
    padding: 110px 0 112px;
    border-bottom: 1px solid var(--line);
}

.minimal-section-heading-center {
    margin-bottom: 50px;
}

.minimal-section-heading-center h2 {
    font-size: var(--type-section-title);
}

.minimal-basic-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.minimal-basic-grid article {
    min-height: 205px;
    padding: 26px;
    border: 1px dashed var(--line);
    transition:
        border-color 220ms ease,
        background 220ms ease,
        transform 220ms ease;
}

.minimal-basic-grid .iconify {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
}

.minimal-basic-grid h3 {
    margin: 18px 0 7px;
    font-size: var(--type-card-title);
    font-weight: 680;
}

.minimal-basic-grid p {
    max-width: 270px;
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.7;
}

.minimal-more {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    background: transparent;
}

.minimal-more strong,
.minimal-more span {
    font-size: var(--type-body);
}

.minimal-more span {
    color: var(--muted);
}

.minimal-testimonials {
    position: relative;
    overflow: hidden;
    padding: 108px 0 112px;
    border-bottom: 1px solid var(--line);
}

.minimal-testimonials::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: url("/images/landing/testimonial-background.svg") center / cover no-repeat;
    content: "";
    opacity: 0.08;
    pointer-events: none;
}

.minimal-testimonials .site-shell {
    position: relative;
    z-index: 1;
}

.testimonial-heading {
    text-align: center;
}

.testimonial-heading-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(217, 119, 6, 0.16);
    border-radius: 4px;
    background: rgba(245, 158, 11, 0.08);
    color: #c76b09;
}

.testimonial-heading-icon .iconify {
    width: 20px;
    height: 20px;
}

.testimonial-heading h2 {
    margin: 16px 0 0;
    font-size: var(--type-section-title);
    font-weight: 600;
    line-height: 1.25;
}

.testimonial-heading p {
    max-width: 520px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.7;
}

.testimonial-carousel {
    position: relative;
    min-height: 360px;
    margin: 72px auto 0;
    padding-inline: 84px;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    min-height: 360px;
}

.testimonial-slide {
    position: absolute;
    inset: 0;
    display: grid;
    justify-items: center;
    align-content: start;
    text-align: center;
    border: 0;
    background: transparent;
    box-shadow: none;
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
    transition: none;
}

.testimonial-slide.is-active {
    visibility: visible;
    transform: translate3d(0, 0, 0);
}

.testimonial-slide.is-stage-right {
    visibility: visible;
    transform: translate3d(100%, 0, 0);
}

.testimonial-slide.is-stage-left {
    visibility: visible;
    transform: translate3d(-100%, 0, 0);
}

.testimonial-slide.is-transitioning {
    visibility: visible;
    transition: transform 1500ms ease;
}

.testimonial-slide.is-entering {
    z-index: 2;
    transform: translate3d(0, 0, 0);
}

.testimonial-slide.is-leaving-left {
    z-index: 1;
    transform: translate3d(-100%, 0, 0);
}

.testimonial-slide.is-leaving-right {
    z-index: 1;
    transform: translate3d(100%, 0, 0);
}

.testimonial-slide > img {
    display: block;
    width: 96px;
    height: 96px;
    border-radius: 28%;
    object-fit: cover;
}

.testimonial-person {
    margin-top: 22px;
}

.testimonial-person h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.testimonial-person p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.5;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-top: 24px;
    color: #d59b19;
}

.testimonial-stars > span {
    font-size: 24px;
    line-height: 1;
}

.testimonial-slide blockquote {
    max-width: 600px;
    margin: 24px 0 0;
    color: #343431;
    font-size: var(--type-body);
    font-style: normal;
    line-height: 1.9;
}

.testimonial-control {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color 180ms ease, background 180ms ease;
}

.testimonial-control:hover {
    border-color: #9a9a94;
    background: #f7f7f5;
}

.testimonial-control:focus-visible {
    outline: 3px solid rgba(17, 132, 115, 0.24);
    outline-offset: 3px;
}

.testimonial-control .iconify {
    width: 20px;
    height: 20px;
}

.testimonial-control-prev {
    left: 20px;
}

.testimonial-control-next {
    right: 20px;
}

.feature-card-indigo > .iconify {
    background: rgba(99, 102, 241, 0.08);
    color: #635bdb;
}

.feature-card-blue > .iconify {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.feature-card-violet > .iconify {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

.feature-card-emerald > .iconify {
    background: rgba(5, 150, 105, 0.08);
    color: #059669;
}

.feature-card-indigo:hover {
    border-color: rgba(99, 102, 241, 0.42);
    background: rgba(99, 102, 241, 0.045);
}

.feature-card-blue:hover {
    border-color: rgba(37, 99, 235, 0.42);
    background: rgba(37, 99, 235, 0.045);
}

.feature-card-violet:hover {
    border-color: rgba(124, 58, 237, 0.42);
    background: rgba(124, 58, 237, 0.045);
}

.feature-card-emerald:hover {
    border-color: rgba(5, 150, 105, 0.42);
    background: rgba(5, 150, 105, 0.045);
}

.workspace-point-cyan .iconify {
    background: rgba(8, 145, 178, 0.08);
    color: #0891b2;
}

.workspace-point-blue .iconify {
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

.workspace-point-violet .iconify {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
}

.workspace-points li:hover {
    border-color: rgba(8, 145, 178, 0.38);
    background: rgba(8, 145, 178, 0.035);
    transform: translateY(-1px);
}

.minimal-storefront {
    padding: 112px 0 116px;
    border-bottom: 1px solid var(--line);
}

.storefront-intro {
    display: grid;
    grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
    gap: 96px;
    align-items: end;
    margin-bottom: 52px;
}

.storefront-intro h2 {
    margin: 0;
    font-size: var(--type-section-title);
    font-weight: 550;
    line-height: 1.24;
}

.storefront-intro-copy {
    max-width: 570px;
}

.storefront-intro-copy p {
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.85;
}

.storefront-intro-copy p + p {
    margin-top: 18px;
}

.storefront-showcase {
    position: relative;
    overflow: visible;
    border: 0;
    background: transparent;
}

.storefront-stage {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2.72;
    background: transparent;
}

.storefront-slide {
    inset: auto;
    top: 4px;
    bottom: 4px;
    left: 101%;
    width: 58%;
    overflow: visible;
    margin: 0;
    background: transparent;
    opacity: 0;
    transform: none;
    transition:
        opacity 420ms ease,
        left 680ms cubic-bezier(0.22, 1, 0.36, 1),
        width 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.storefront-slide.is-active {
    z-index: 3;
    left: 21%;
    width: 58%;
    opacity: 1;
    pointer-events: auto;
}

.storefront-slide.is-previous,
.storefront-slide.is-next {
    z-index: 1;
    width: 18%;
    opacity: 1;
    pointer-events: none;
}

.storefront-slide.is-previous {
    left: 2%;
}

.storefront-slide.is-next {
    left: 80%;
}

.storefront-slide-link {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 9px;
}

.storefront-slide-link:focus-visible {
    outline: 3px solid #118473;
    outline-offset: -3px;
}

.storefront-slide img {
    position: absolute;
    inset: 0;
    border-radius: 9px;
    object-fit: cover;
    object-position: top center;
    transition: none;
}

.storefront-slide .storefront-slide-thumb {
    display: none;
    background: transparent;
    object-fit: cover !important;
    object-position: top center;
}

.storefront-slide.is-previous .storefront-slide-main,
.storefront-slide.is-next .storefront-slide-main {
    display: none;
}

.storefront-slide.is-previous .storefront-slide-thumb,
.storefront-slide.is-next .storefront-slide-thumb {
    display: block;
}

.storefront-slide figcaption {
    position: absolute;
    z-index: 4;
    top: 14px;
    left: 14px;
    display: grid;
    gap: 2px;
    width: fit-content;
    max-width: calc(100% - 28px);
    min-width: 0;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 7px;
    background: rgba(12, 12, 11, 0.76);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 10px;
    pointer-events: none;
}

.storefront-slide.is-previous figcaption,
.storefront-slide.is-next figcaption {
    opacity: 0;
}

.storefront-slide figcaption span {
    overflow: hidden;
    color: #fff;
    font-size: 10px;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.storefront-slide figcaption strong {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.storefront-side-controls {
    position: absolute;
    z-index: 6;
    inset: 0;
    pointer-events: none;
}

.storefront-side-control {
    position: absolute;
    top: calc(50% - 17px);
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #171816;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.12);
    cursor: pointer;
    pointer-events: auto;
}

.storefront-side-control-prev {
    left: 8px;
}

.storefront-side-control-next {
    right: 8px;
}

.storefront-side-control:hover {
    background: #fff;
    transform: scale(1.04);
}

.storefront-side-control .iconify {
    width: 20px;
    height: 20px;
}

.minimal-security {
    padding: 104px 0 110px;
    border-bottom: 1px solid var(--line);
}

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

.minimal-security-grid article {
    min-height: 195px;
    padding: 24px 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.minimal-security-grid .iconify {
    width: 25px;
    height: 25px;
}

.minimal-security-grid h3 {
    margin: 38px 0 10px;
    font-size: var(--type-card-title);
    font-weight: 680;
}

.minimal-security-grid p {
    margin: 0;
    color: var(--muted);
    font-size: var(--type-body);
    line-height: 1.7;
}

.minimal-security-links {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 28px;
}

.minimal-security-links a {
    padding-bottom: 3px;
    border-bottom: 1px solid currentColor;
    font-size: var(--type-body);
    font-weight: 650;
    text-decoration: none;
}

.minimal-final-cta {
    padding-top: 92px;
}

.home-minimal .site-cta-inner {
    min-height: 250px;
}

@media (max-width: 1100px) {
    .minimal-hero-grid,
    .minimal-process-grid {
        gap: 52px;
    }

    .minimal-hero h1 {
        font-size: 39px;
    }

    .minimal-core-item > div {
        grid-template-columns: 130px minmax(0, 1fr);
    }
}

@media (max-width: 820px) {
    .site-header-inner {
        grid-template-columns: 1fr auto;
        min-height: 64px;
    }

    .site-nav,
    .site-login,
    .site-start {
        display: none;
    }

    .site-menu-button {
        display: grid;
    }

    .minimal-hero {
        padding: 68px 0 72px;
    }

    .minimal-hero-grid,
    .minimal-process-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .minimal-hero h1 {
        font-size: 34px;
    }

    .minimal-lead {
        font-size: var(--type-body);
    }

    .proof-label {
        min-height: 48px;
        padding-inline: 14px;
    }

    .minimal-trust-inner {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 15px 0;
    }

    .minimal-trust-inner p {
        grid-column: 2;
        text-align: left;
    }

    .minimal-core,
    .minimal-process,
    .minimal-managed,
    .minimal-workspace,
    .minimal-basics,
    .minimal-testimonials,
    .minimal-storefront,
    .minimal-security {
        padding: 78px 0 82px;
    }

    .minimal-section-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .minimal-section-description {
        margin-inline: 0;
    }

    .minimal-section-heading h2,
    .minimal-process-copy h2,
    .workspace-copy h2,
    .storefront-intro h2 {
        font-size: var(--type-section-title-mobile);
    }

    .minimal-core-item {
        grid-template-columns: 52px 34px minmax(0, 1fr);
        gap: 12px;
        min-height: 126px;
    }

    .minimal-core-number {
        font-size: 21px;
    }

    .minimal-core-item > div {
        display: block;
    }

    .minimal-core-item p {
        margin-top: 8px;
    }

    .minimal-basic-grid {
        grid-template-columns: 1fr;
    }

    .minimal-managed-grid {
        grid-template-columns: 1fr;
    }

    .managed-demo {
        padding: 14px;
    }

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

    .operations-demo-grid {
        grid-template-columns: 1fr;
    }

    .strategy-plan-stack,
    .advertising-plan-stack {
        min-height: 0;
    }

    .managed-demo-workflow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .managed-demo-workflow > span:nth-child(2) {
        border-right: 0;
    }

    .managed-demo-workflow > span:nth-child(-n + 2) {
        border-bottom: 1px solid #e2e2de;
    }

    .advertising-target-head {
        display: none;
    }

    .advertising-target-row {
        grid-template-columns: minmax(0, 1fr) minmax(160px, 0.72fr);
        gap: 10px 18px;
        align-items: start;
        padding: 12px;
    }

    .advertising-target-row > strong {
        grid-column: 1 / -1;
        padding-bottom: 10px;
        border-bottom: 1px solid #ecece8;
    }

    .advertising-target-row [data-label] {
        position: relative;
        min-width: 0;
        padding-left: 48px;
    }

    .advertising-target-row [data-label]::before {
        position: absolute;
        top: 1px;
        left: 0;
        color: var(--muted);
        content: attr(data-label);
        font-size: var(--type-body);
        font-weight: 500;
    }

    .advertising-review,
    .advertising-coverage {
        width: 100%;
        border: 0;
        background: transparent;
        line-height: 1.45;
    }

    .advertising-review.is-positive,
    .advertising-review.is-warning {
        border: 0;
        background: transparent;
    }

    .daypart-bars {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .advertising-evidence,
    .advertising-bids {
        min-height: 34px;
    }

    .advertising-bids {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .minimal-workspace-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .workspace-copy h2 {
        max-width: 620px;
    }

    .workspace-lead {
        max-width: 620px;
    }

    .workspace-points {
        max-width: 620px;
    }

    .storefront-intro {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }

    .storefront-stage {
        aspect-ratio: 2.18;
    }

    .storefront-slide {
        top: 4px;
        bottom: 4px;
    }

    .storefront-slide.is-active {
        left: 15%;
        width: 70%;
    }

    .storefront-slide.is-previous,
    .storefront-slide.is-next {
        width: 12.5%;
    }

    .storefront-slide.is-previous {
        left: 1%;
    }

    .storefront-slide.is-next {
        left: 86.5%;
    }

    .storefront-side-control {
        top: calc(50% - 25px);
        width: 32px;
        height: 32px;
    }

    .storefront-side-control-prev {
        left: 6px;
    }

    .storefront-side-control-next {
        right: 6px;
    }

    .storefront-slide figcaption {
        top: 10px;
        left: 10px;
        gap: 1px;
        max-width: calc(100% - 20px);
        padding: 7px 9px;
    }

    .storefront-slide figcaption strong {
        font-size: 10px;
    }

    .minimal-managed-grid article {
        min-height: 180px;
    }

    .minimal-basic-grid article {
        min-height: 176px;
    }

    .minimal-basic-grid h3 {
        margin-top: 18px;
    }

    .testimonial-carousel {
        min-height: 380px;
        padding-inline: 54px;
    }

    .testimonial-track {
        min-height: 380px;
    }

    .testimonial-control {
        top: 50%;
        width: 36px;
        height: 36px;
    }

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

    .minimal-security-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 24px;
    }

    .minimal-final-cta {
        padding-top: 70px;
    }
}

@media (max-width: 440px) {
    .minimal-hero h1 {
        font-size: 30px;
    }

    .minimal-actions a {
        min-height: 38px;
        padding-inline: 14px;
    }

    .minimal-core-item {
        grid-template-columns: 46px 28px minmax(0, 1fr);
    }

    .minimal-core-icon {
        width: 22px;
        height: 22px;
    }

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

    .minimal-security-grid article {
        min-height: 168px;
    }

    .minimal-managed-grid article {
        padding: 26px 24px;
    }

    .minimal-managed-grid h3 {
        margin-top: 18px;
    }

    .storefront-stage {
        aspect-ratio: 2.18;
    }

    .testimonial-carousel {
        min-height: 430px;
        padding-inline: 42px;
    }

    .testimonial-track {
        min-height: 430px;
    }

    .testimonial-slide > img {
        width: 96px;
        height: 96px;
    }

    .testimonial-control {
        top: 50%;
        width: 34px;
        height: 34px;
    }

}

@media (max-width: 560px) {
    .proof-label {
        flex-wrap: wrap;
        padding-block: 10px;
    }

    .proof-label b {
        order: 3;
        width: 100%;
        margin-left: 0;
    }

    .managed-demo {
        padding: 10px;
    }

    .managed-demo-toolbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 11px 12px;
    }

    .managed-demo-toolbar strong {
        white-space: normal;
    }

    .managed-demo-toolbar > span {
        padding-left: 29px;
    }

    .managed-demo-metrics,
    .operations-demo-grid,
    .advertising-adjustments {
        grid-template-columns: 1fr;
    }

    .managed-demo-metrics article {
        min-height: 68px;
    }

    .advertising-adjustments article {
        min-height: 74px;
        border-right: 0;
        border-bottom: 1px solid #e2e2de;
    }

    .advertising-adjustments article:last-child {
        border-bottom: 0;
    }

    .demo-subpanel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .strategy-options {
        margin: 10px;
    }

    .strategy-options button {
        min-width: 0;
        padding-inline: 3px;
    }

    .strategy-plan-summary {
        padding-inline: 10px;
    }

    .strategy-plan-summary > div {
        align-items: flex-start;
    }

    .strategy-plan-summary strong,
    .strategy-plan-summary p {
        overflow-wrap: anywhere;
    }

    .strategy-plan-facts {
        margin-inline: 10px;
    }

    .strategy-plan-facts div {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .execution-list {
        padding-inline: 10px;
    }

    .execution-list > div {
        grid-template-columns: 9px minmax(0, 1fr);
        padding-block: 7px;
    }

    .execution-list span,
    .execution-list em {
        white-space: normal;
    }

    .execution-list em {
        grid-column: 2;
    }

    .managed-demo-workflow {
        grid-template-columns: 1fr;
    }

    .managed-demo-workflow > span {
        border-right: 0;
        border-bottom: 1px solid #e2e2de;
    }

    .managed-demo-workflow > span:last-child {
        border-bottom: 0;
    }

    .advertising-plan-stack {
        margin-inline: 10px;
    }

    .advertising-role-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px 12px;
    }

    .advertising-role-summary strong {
        grid-column: 1 / -1;
    }

    .advertising-target-row {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .advertising-target-row > strong {
        grid-column: auto;
    }

    .advertising-target-row [data-label] {
        min-height: 24px;
    }

    .advertising-bids {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        text-align: left;
    }

    .advertising-bid-policy {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .daypart-demo-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .daypart-demo-summary {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) auto;
        text-align: left;
    }

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

/* USINC 首页卡片体系 */
.home-minimal {
    --type-body: 12px;
    --type-card-title: 17px;
    --type-section-title: 30px;
    --type-section-title-mobile: 24px;
    --home-card-radius: 6px;
    --home-card-line: color-mix(in srgb, var(--so-text) 16%, transparent);
    --home-card-copy: color-mix(in srgb, var(--so-text) 72%, transparent);
}

.home-minimal :is(
    .minimal-core,
    .minimal-process,
    .minimal-managed,
    .minimal-workspace,
    .minimal-basics,
    .minimal-testimonials,
    .minimal-storefront,
    .minimal-security,
    .selleros-faqs
) {
    padding-top: 96px;
    padding-bottom: 96px;
}

.home-minimal :is(
    .minimal-section-heading h2,
    .minimal-process-copy h2,
    .workspace-copy h2,
    .storefront-intro h2,
    .selleros-faq-heading h2,
    .testimonial-heading h2
) {
    color: var(--so-text);
    font-size: var(--type-section-title);
    font-weight: 600;
    line-height: 1.28;
}

.home-minimal :is(
    .minimal-section-description,
    .minimal-process-copy > p:not(.minimal-kicker),
    .workspace-lead,
    .storefront-intro-copy p,
    .selleros-faq-heading > p:last-child,
    .testimonial-heading > p
) {
    color: var(--home-card-copy);
    font-size: var(--type-body);
    line-height: 1.75;
}

.home-minimal .minimal-section-heading {
    max-width: 660px;
    margin-bottom: 48px;
}

.home-minimal .minimal-section-heading > p {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 5px 9px;
    border: 1px solid color-mix(in srgb, var(--so-primary) 14%, transparent);
    border-radius: 4px;
    background: color-mix(in srgb, var(--so-primary) 5%, transparent);
    color: var(--so-primary);
    font-size: 12px;
    font-weight: 600;
}

.home-minimal .minimal-core-list {
    display: grid;
    max-width: none;
    margin: 0;
    border: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.home-minimal :is(
    .minimal-core-item,
    .minimal-managed-grid article,
    .minimal-basic-grid article,
    .minimal-security-grid article,
    .workspace-points li
) {
    border: 1px dashed var(--home-card-line);
    border-radius: var(--home-card-radius);
    background: var(--so-base-raised);
    box-shadow: none;
    transition:
        border-color 300ms ease,
        background-color 300ms ease,
        color 300ms ease;
}

.home-minimal :is(
    .minimal-core-item,
    .minimal-managed-grid article,
    .minimal-basic-grid article,
    .minimal-security-grid article,
    .workspace-points li
):hover {
    transform: none;
}

.home-minimal .minimal-core-item {
    display: grid;
    min-height: 172px;
    padding: 24px;
    grid-template-columns: 32px 44px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.home-minimal .minimal-core-number {
    padding-top: 10px;
    color: color-mix(in srgb, var(--so-text) 45%, transparent);
    font-size: 12px;
    font-weight: 600;
}

.home-minimal .minimal-core-icon,
.home-minimal :is(.minimal-managed-grid, .minimal-basic-grid) > article > .iconify,
.home-minimal .workspace-points .iconify,
.home-minimal .minimal-security-grid .iconify {
    display: inline-grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
}

.home-minimal .minimal-core-icon {
    background: color-mix(in srgb, var(--so-primary) 6%, transparent);
    color: var(--so-primary);
}

.home-minimal .minimal-core-item > div {
    display: block;
}

.home-minimal :is(
    .minimal-core-item h3,
    .minimal-managed-grid h3,
    .minimal-basic-grid h3,
    .minimal-security-grid h3
) {
    margin: 10px 0 5px;
    color: var(--so-text);
    font-size: var(--type-card-title);
    font-weight: 500;
    line-height: 1.45;
}

.home-minimal .minimal-core-item h3 {
    margin-top: 8px;
}

.home-minimal :is(
    .minimal-core-item p,
    .minimal-managed-grid p,
    .minimal-basic-grid p,
    .minimal-security-grid p,
    .workspace-points li
) {
    max-width: none;
    color: var(--home-card-copy);
    font-size: var(--type-body);
    line-height: 1.7;
}

.home-minimal .minimal-core-item:hover {
    border-color: color-mix(in srgb, var(--so-primary) 42%, transparent);
    background: color-mix(in srgb, var(--so-primary) 5%, var(--so-base-raised));
}

.home-minimal .minimal-managed-grid {
    gap: 16px;
    max-width: 920px;
}

.home-minimal :is(.minimal-managed-grid article, .minimal-basic-grid article) {
    min-height: 204px;
    padding: 24px;
}

.home-minimal .minimal-managed-grid .feature-card-indigo:hover {
    border-color: color-mix(in srgb, #6366f1 42%, transparent);
    background: color-mix(in srgb, #6366f1 5%, var(--so-base-raised));
}

.home-minimal :is(
    .minimal-managed-grid .feature-card-emerald,
    .minimal-basic-grid .feature-card-emerald
):hover {
    border-color: color-mix(in srgb, #10b981 42%, transparent);
    background: color-mix(in srgb, #10b981 5%, var(--so-base-raised));
}

.home-minimal .minimal-basic-grid {
    gap: 16px;
}

.home-minimal .minimal-basic-grid .feature-card-blue:hover {
    border-color: color-mix(in srgb, #3b82f6 42%, transparent);
    background: color-mix(in srgb, #3b82f6 5%, var(--so-base-raised));
}

.home-minimal .minimal-basic-grid .feature-card-violet:hover {
    border-color: color-mix(in srgb, #8b5cf6 42%, transparent);
    background: color-mix(in srgb, #8b5cf6 5%, var(--so-base-raised));
}

.home-minimal .workspace-points {
    gap: 12px;
}

.home-minimal .workspace-points li {
    min-height: 64px;
    padding: 10px 12px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
}

.home-minimal .workspace-points li:hover {
    border-color: color-mix(in srgb, var(--so-accent) 42%, transparent);
    background: color-mix(in srgb, var(--so-accent) 5%, var(--so-base-raised));
}

.home-minimal .workspace-screen {
    border: 1px solid var(--home-card-line);
    border-radius: var(--home-card-radius);
    background: var(--so-base-raised);
    box-shadow: none;
}

.home-minimal .minimal-security-grid {
    display: grid;
    border: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-minimal .minimal-security-grid article {
    min-height: 214px;
    padding: 24px;
}

.home-minimal .minimal-security-grid h3 {
    margin-top: 20px;
}

.home-minimal .minimal-security-grid article:nth-child(1) .iconify {
    background: color-mix(in srgb, #3b82f6 6%, transparent);
    color: #2563eb;
}

.home-minimal .minimal-security-grid article:nth-child(2) .iconify {
    background: color-mix(in srgb, #8b5cf6 6%, transparent);
    color: #7c3aed;
}

.home-minimal .minimal-security-grid article:nth-child(3) .iconify {
    background: color-mix(in srgb, #10b981 6%, transparent);
    color: #059669;
}

.home-minimal .minimal-security-grid article:nth-child(4) .iconify {
    background: color-mix(in srgb, #0ea5e9 6%, transparent);
    color: #0284c7;
}

.home-minimal .minimal-security-grid article:nth-child(1):hover {
    border-color: color-mix(in srgb, #3b82f6 42%, transparent);
    background: color-mix(in srgb, #3b82f6 5%, var(--so-base-raised));
}

.home-minimal .minimal-security-grid article:nth-child(2):hover {
    border-color: color-mix(in srgb, #8b5cf6 42%, transparent);
    background: color-mix(in srgb, #8b5cf6 5%, var(--so-base-raised));
}

.home-minimal .minimal-security-grid article:nth-child(3):hover {
    border-color: color-mix(in srgb, #10b981 42%, transparent);
    background: color-mix(in srgb, #10b981 5%, var(--so-base-raised));
}

.home-minimal .minimal-security-grid article:nth-child(4):hover {
    border-color: color-mix(in srgb, #0ea5e9 42%, transparent);
    background: color-mix(in srgb, #0ea5e9 5%, var(--so-base-raised));
}

.home-minimal .minimal-more {
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    padding-top: 0;
    border: 0;
}

.home-minimal .minimal-more strong {
    width: 100%;
    color: var(--so-muted);
    font-weight: 500;
    text-align: center;
}

.home-minimal .minimal-more span {
    padding: 6px 9px;
    border: 1px solid var(--home-card-line);
    border-radius: 4px;
    background: var(--so-base-raised);
}

.home-minimal .selleros-faq-list {
    border-top-color: var(--home-card-line);
}

.home-minimal .selleros-faq-list details {
    border-bottom-color: var(--home-card-line);
}

.home-minimal .selleros-faq-list summary {
    font-size: 16px;
    font-weight: 500;
}

.home-minimal .selleros-faq-list details p {
    color: var(--home-card-copy);
    font-size: var(--type-body);
}

@media (max-width: 820px) {
    .home-minimal :is(
        .minimal-section-heading h2,
        .minimal-process-copy h2,
        .workspace-copy h2,
        .storefront-intro h2,
        .selleros-faq-heading h2,
        .testimonial-heading h2
    ) {
        font-size: var(--type-section-title-mobile);
    }

    .home-minimal .minimal-core-list,
    .home-minimal .minimal-managed-grid,
    .home-minimal .minimal-basic-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .home-minimal :is(
        .minimal-core,
        .minimal-process,
        .minimal-managed,
        .minimal-workspace,
        .minimal-basics,
        .minimal-testimonials,
        .minimal-storefront,
        .minimal-security,
        .selleros-faqs
    ) {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .home-minimal .minimal-core-item {
        min-height: 0;
        padding: 20px;
        grid-template-columns: 28px 40px minmax(0, 1fr);
        gap: 10px;
    }

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

    .home-minimal .minimal-security-grid article {
        min-height: 0;
    }
}
