:root {
    --ink: #111b21;
    --ink-soft: #34434b;
    --muted: #66757d;
    --line: #d8e0e3;
    --line-dark: #304047;
    --paper: #f5f7f6;
    --white: #ffffff;
    --green: #176b52;
    --green-dark: #0e503d;
    --yellow: #d4a72c;
    --red: #b54b3a;
    --nav-height: 72px;
    --page-gutter: clamp(22px, 4vw, 72px);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

img {
    display: block;
    max-width: 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 8px;
    left: 8px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: var(--nav-height);
    padding: 0 var(--page-gutter);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
    line-height: 1;
}

.brand small {
    padding: 4px 6px;
    border: 1px solid var(--line);
    border-radius: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.brand-mark {
    display: grid;
    grid-template-columns: repeat(3, 4px);
    align-items: end;
    gap: 3px;
    width: 18px;
    height: 22px;
}

.brand-mark span {
    display: block;
    width: 4px;
    background: var(--green);
}

.brand-mark span:nth-child(1) { height: 10px; }
.brand-mark span:nth-child(2) { height: 22px; }
.brand-mark span:nth-child(3) { height: 15px; }

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    position: relative;
    padding: 24px 0 22px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 600;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    content: "";
    background: var(--green);
    transform: scaleX(0);
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 10px;
}

.icon-link,
.menu-button,
.modal-close,
.method-action {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
}

.icon-link:hover,
.menu-button:hover,
.modal-close:hover,
.method-action:hover {
    border-color: var(--green);
    color: var(--green);
}

.menu-button {
    display: none;
}

.mobile-nav {
    position: fixed;
    z-index: 990;
    top: var(--nav-height);
    right: 0;
    left: 0;
    padding: 12px var(--page-gutter) 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(17, 27, 33, 0.12);
}

.mobile-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button i {
    margin-right: 8px;
}

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

.button:focus-visible,
.icon-link:focus-visible,
.menu-button:focus-visible,
.product-tab:focus-visible,
.deploy-tab:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(212, 167, 44, 0.42);
    outline-offset: 2px;
}

.button-primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.button-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.button-accent {
    color: var(--ink);
    background: var(--yellow);
    border-color: var(--yellow);
}

.button-accent:hover {
    background: #c49720;
    border-color: #c49720;
}

.button-light {
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
}

.button-video {
    color: var(--white);
    background: #b54b3a;
    border-color: #b54b3a;
}

.button-video:hover {
    color: var(--white);
    background: #963b2e;
    border-color: #963b2e;
}

.button-outline {
    color: var(--ink);
    background: transparent;
    border-color: #aebbc1;
}

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

.button-large {
    min-height: 50px;
    padding: 13px 22px;
}

.hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: min(76vh, 760px);
    overflow: hidden;
    color: var(--white);
    background: #0a1118;
}

.hero-media {
    position: absolute;
    z-index: -3;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-shade {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: rgba(6, 12, 17, 0.65);
}

.hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(760px, 68vw);
    content: "";
    background: rgba(8, 16, 21, 0.82);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-content {
    width: min(690px, 62vw);
    padding: 66px 0 70px var(--page-gutter);
}

.release-line {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    color: #d8e4df;
    font-size: 13px;
    font-weight: 700;
}

.release-line span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #67c394;
    box-shadow: 0 0 0 5px rgba(103, 195, 148, 0.16);
}

.hero h1 {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 650px;
    margin: 24px 0 14px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.45;
}

.hero-copy {
    max-width: 620px;
    margin: 0;
    color: #cfdbd6;
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 610px;
    margin: 34px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    list-style: none;
}

.hero-facts li {
    padding-right: 18px;
}

.hero-facts li + li {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts strong,
.hero-facts span {
    display: block;
}

.hero-facts strong {
    font-size: 20px;
}

.hero-facts span {
    color: #aebdb6;
    font-size: 12px;
}

.hero-next {
    position: absolute;
    right: var(--page-gutter);
    bottom: 28px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.creator-strip {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    min-height: 92px;
    color: var(--white);
    background: #111b21;
    border-bottom: 1px solid #27343a;
}

.creator-strip a {
    color: inherit;
}

.creator-strip-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px var(--page-gutter);
    border-right: 1px solid #344148;
}

.creator-strip-intro span,
.creator-strip-links span {
    color: #aebdb6;
    font-size: 11px;
    font-weight: 700;
}

.creator-strip-intro strong {
    margin-top: 4px;
    font-size: 14px;
}

.creator-strip-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.creator-strip-links a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-content: center;
    column-gap: 10px;
    min-width: 0;
    padding: 15px 22px;
    border-right: 1px solid #344148;
}

.creator-strip-links i {
    grid-row: 1 / 3;
    align-self: center;
    color: #67c394;
    font-size: 20px;
}

.creator-strip-links strong {
    overflow: hidden;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.creator-strip-links a:hover,
.creator-strip-links a:focus-visible {
    background: #1a272d;
}

.source-strip {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: stretch;
    min-height: 76px;
    color: var(--white);
    background: var(--green);
}

.source-strip-label {
    display: flex;
    align-items: center;
    padding: 18px var(--page-gutter);
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.source-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(170px, 1fr));
}

.source-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 12px 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.source-list i {
    margin-right: 9px;
    color: #bde2d1;
}

.section {
    padding: 100px var(--page-gutter);
}

.section-white {
    background: var(--white);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 48px;
}

.section-heading-wide {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 80px;
    max-width: none;
    align-items: end;
}

.section-heading h2,
.release-copy h2,
.operations-intro h2,
.deploy-copy h2,
.contact-copy h2,
.final-cta h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1.25;
    letter-spacing: 0;
}

.section-heading > p,
.section-heading-wide > p,
.release-copy > p:last-child,
.deploy-copy > p,
.contact-copy > p {
    margin: 0;
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.eyebrow::before {
    display: inline-block;
    width: 24px;
    height: 2px;
    margin: 0 10px 3px 0;
    content: "";
    background: currentColor;
}

.eyebrow-light {
    color: #83cfaa;
}

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

.capability {
    position: relative;
    min-height: 290px;
    padding: 38px 34px 34px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.capability-lead {
    color: var(--white);
    background: var(--green-dark);
}

.capability-index {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #9aa8ae;
    font-size: 12px;
    font-weight: 800;
}

.capability-lead .capability-index {
    color: #91b9aa;
}

.capability > i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--green);
    font-size: 19px;
}

.capability-lead > i {
    border-color: #497968;
    color: #b3e4cf;
}

.capability h3 {
    margin: 28px 0 12px;
    font-size: 23px;
}

.capability p {
    margin: 0;
    color: var(--muted);
}

.capability-lead p {
    color: #c6d9d1;
}

.capability ul {
    margin: 24px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 13px;
    list-style: none;
}

.capability-lead ul {
    border-color: #416f60;
    color: #d6e5df;
}

.capability li {
    position: relative;
    padding-left: 15px;
}

.capability li + li {
    margin-top: 6px;
}

.capability li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--yellow);
}

.release-section {
    position: relative;
    display: grid;
    grid-template-columns: 0.7fr 1.1fr 2fr auto;
    gap: 46px;
    align-items: center;
    padding: 84px var(--page-gutter);
    overflow: hidden;
    color: var(--white);
    background: var(--ink);
}

.release-number {
    color: #7aa996;
    font-size: 96px;
    font-weight: 900;
    line-height: 1;
}

.release-copy h2 {
    font-size: 31px;
}

.release-copy > p:last-child {
    margin-top: 18px;
    color: #aab8be;
}

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

.release-list > div {
    min-height: 150px;
    padding: 20px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
}

.release-list span {
    color: #7f9097;
    font-size: 11px;
}

.release-list strong,
.release-list p {
    display: block;
}

.release-list strong {
    margin-top: 7px;
}

.release-list p {
    margin: 7px 0 0;
    color: #aab8be;
    font-size: 13px;
}

.product-section {
    background: var(--paper);
}

.product-tabs,
.deploy-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 24px;
    overflow-x: auto;
}

.product-tab,
.deploy-tab {
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-right: 0;
    color: var(--ink-soft);
    background: var(--white);
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
}

.product-tab:first-child,
.deploy-tab:first-child {
    border-radius: 4px 0 0 4px;
}

.product-tab:last-child,
.deploy-tab:last-child {
    border-right: 1px solid var(--line);
    border-radius: 0 4px 4px 0;
}

.product-tab i {
    margin-right: 8px;
}

.product-tab.is-active {
    border-color: var(--ink);
    color: var(--white);
    background: var(--ink);
}

.product-stage {
    min-height: 560px;
    border: 1px solid #26363e;
    background: #09121a;
}

.product-panel {
    position: relative;
    margin: 0;
}

.product-panel img {
    width: 100%;
    max-height: 74vh;
    object-fit: contain;
    object-position: center top;
    background: #09121a;
}

.product-panel figcaption {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px 28px;
    color: var(--white);
    background: #101b22;
    border-top: 1px solid #26363e;
}

.product-panel figcaption span {
    color: #aebbc1;
}

.operations-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 2.2fr);
    gap: 90px;
    padding: 100px var(--page-gutter);
    background: var(--white);
}

.operations-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    list-style: none;
}

.operations-flow li {
    position: relative;
    min-height: 270px;
    padding: 30px 24px;
    border-right: 1px solid var(--line);
}

.operations-flow li:first-child {
    border-left: 1px solid var(--line);
}

.operations-flow span {
    color: #8c9aa1;
    font-size: 11px;
}

.operations-flow i {
    display: block;
    margin: 40px 0 22px;
    color: var(--green);
    font-size: 28px;
}

.operations-flow strong {
    display: block;
    font-size: 19px;
}

.operations-flow p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.cases-section {
    background: #edf1ef;
}

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

.case-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.case-card > img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.case-body {
    padding: 28px;
}

.case-body > span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.case-body h3 {
    margin: 7px 0 10px;
}

.case-body p {
    color: var(--muted);
}

.case-body strong {
    display: block;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--green);
    font-size: 13px;
}

.case-body strong i {
    margin-right: 8px;
}

.comparison-section {
    background: var(--white);
}

.comparison-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.65fr);
    gap: 30px;
    align-items: stretch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 17px 20px;
    border: 1px solid var(--line);
    text-align: center;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 58%;
    text-align: left;
}

.comparison-table thead th {
    color: var(--white);
    background: var(--ink);
    font-size: 13px;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f7f9f8;
}

.comparison-table .fa-check {
    color: var(--green);
}

.comparison-table .muted {
    color: #a9b4b9;
}

.trial-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
    color: var(--white);
    background: var(--green-dark);
}

.trial-kicker {
    color: #a8d8c4;
    font-size: 12px;
    font-weight: 800;
}

.trial-summary h3 {
    margin: 16px 0;
    font-size: 28px;
    line-height: 1.4;
}

.trial-summary p {
    margin: 0;
    color: #c8d9d2;
}

.trial-summary ul {
    margin: 26px 0 30px;
    padding: 22px 0 0;
    border-top: 1px solid #477564;
    list-style: none;
}

.trial-summary li + li {
    margin-top: 9px;
}

.trial-summary li i {
    margin-right: 9px;
    color: #9dd2bb;
}

.trial-summary .button {
    margin-top: auto;
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--ink);
}

.pricing-section {
    background: var(--paper);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 440px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.price-card.is-featured {
    border-top: 4px solid var(--green);
    padding-top: 27px;
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--white);
    background: var(--green);
    font-size: 11px;
    font-weight: 800;
}

.price-card h3 {
    margin: 0;
    font-size: 18px;
}

.price-value {
    min-height: 56px;
    margin: 16px 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 28px;
    font-weight: 800;
}

.price-card ul {
    margin: 0 0 28px;
    padding: 0;
    color: var(--ink-soft);
    font-size: 13px;
    list-style: none;
}

.price-card li + li {
    margin-top: 9px;
}

.price-card li i {
    margin-right: 8px;
    color: var(--green);
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.deploy-section {
    display: grid;
    grid-template-columns: minmax(340px, 0.7fr) minmax(0, 1.3fr);
    color: var(--white);
    background: var(--ink);
}

.deploy-copy {
    padding: 94px var(--page-gutter);
    border-right: 1px solid var(--line-dark);
}

.deploy-copy > p {
    margin-top: 20px;
    color: #aab8be;
}

.deploy-tabs {
    margin: 36px 0 0;
}

.deploy-tab {
    border-color: var(--line-dark);
    color: #bdc7cb;
    background: transparent;
}

.deploy-tab:last-child {
    border-right-color: var(--line-dark);
}

.deploy-tab.is-active {
    border-color: var(--yellow);
    color: var(--ink);
    background: var(--yellow);
}

.deploy-console {
    min-height: 560px;
    padding: 64px var(--page-gutter) 64px 54px;
    background: #0b1318;
}

.deploy-step {
    display: grid;
    grid-template-columns: 42px minmax(180px, 0.55fr) minmax(0, 1.45fr);
    gap: 18px;
    align-items: start;
    padding: 24px 0;
    border-bottom: 1px solid #26343b;
}

.deploy-step:first-child {
    border-top: 1px solid #26343b;
}

.deploy-step > span {
    color: #809097;
    font-size: 12px;
}

.deploy-step h3 {
    margin: 0;
    font-size: 16px;
}

.deploy-step p {
    margin: 7px 0 0;
    color: #9eadb3;
    font-size: 13px;
}

.deploy-step pre {
    max-width: 100%;
    margin: 0;
    padding: 14px 16px;
    overflow-x: auto;
    border-left: 3px solid var(--green);
    color: #bfe5d3;
    background: #101c22;
    font-family: Consolas, "Courier New", monospace;
    font-size: 12px;
    white-space: pre-wrap;
}

.faq-section {
    background: var(--white);
}

.social-section {
    background: #eef2ef;
}

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

.social-channel {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border-right: 1px solid #cbd6d0;
    border-bottom: 1px solid #cbd6d0;
    background: var(--white);
}

.social-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 34px;
    border-radius: 4px;
    color: var(--white);
    background: var(--ink);
    font-size: 20px;
}

.social-icon-gitee { background: #c71d23; }
.social-icon-bilibili { background: #00a1d6; }
.social-icon-wechat { background: #1aad19; }

.social-channel > span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.social-channel h3 {
    margin: 7px 0 16px;
    font-size: 22px;
}

.social-channel > a {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
}

.social-channel > a i {
    margin-left: 6px;
    font-size: 11px;
}

.social-qr {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 96px;
    height: 96px;
    padding: 5px;
    border: 1px solid var(--line);
    background: var(--white);
    object-fit: contain;
}

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

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

.faq-item summary {
    display: grid;
    grid-template-columns: 50px 1fr 24px;
    gap: 18px;
    align-items: center;
    min-height: 76px;
    padding: 14px 0;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq-item summary span {
    color: #8b9aa1;
    font-size: 11px;
}

.faq-item summary i {
    transition: transform 160ms ease;
}

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

.faq-item > p {
    max-width: 980px;
    margin: 0;
    padding: 0 0 28px 68px;
    color: var(--muted);
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
    gap: 90px;
    padding: 100px var(--page-gutter);
    background: #eef2ef;
}

.contact-copy dl {
    margin: 34px 0 0;
    border-top: 1px solid #cbd6d0;
}

.contact-copy dl > div {
    display: grid;
    grid-template-columns: 90px 1fr;
    padding: 13px 0;
    border-bottom: 1px solid #cbd6d0;
}

.contact-copy dt {
    color: var(--muted);
    font-size: 13px;
}

.contact-copy dd {
    margin: 0;
    font-weight: 700;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 38px;
    border: 1px solid #cbd6d0;
    background: var(--white);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row-wide {
    grid-column: 1 / -1;
}

.form-row label {
    font-size: 13px;
    font-weight: 800;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid #b9c5ca;
    border-radius: 3px;
    color: var(--ink);
    background: var(--white);
}

.form-row input {
    height: 48px;
    padding: 0 14px;
}

.form-row textarea {
    min-height: 130px;
    padding: 12px 14px;
    resize: vertical;
}

.contact-form .button {
    justify-self: start;
}

.form-status {
    align-self: center;
    margin: 0;
    color: var(--green);
    font-size: 13px;
}

.form-status.is-error {
    color: var(--red);
}

.final-cta {
    display: grid;
    grid-template-columns: 0.45fr 1.2fr auto;
    gap: 50px;
    align-items: center;
    padding: 76px var(--page-gutter);
    color: var(--white);
    background: var(--green-dark);
}

.final-cta > p {
    margin: 0;
    color: #a9d6c3;
    font-size: 13px;
    font-weight: 800;
}

.final-cta h2 {
    font-size: 34px;
}

.final-cta > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.text-link {
    padding: 4px;
    color: #cbe4d9;
    font-size: 13px;
    font-weight: 700;
}

.text-link i {
    margin-left: 6px;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 0.65fr);
    gap: 54px;
    padding: 70px var(--page-gutter) 28px;
    color: #d2dbdf;
    background: #0b1216;
}

.brand-light {
    color: var(--white);
}

.footer-brand p {
    margin: 18px 0 0;
    color: #89989f;
    font-size: 13px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
}

.footer-column strong {
    margin-bottom: 8px;
    color: var(--white);
}

.footer-column a,
.footer-column span {
    color: #89989f;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    grid-column: 1 / -1;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #26343b;
    color: #718087;
    font-size: 11px;
}

.floating-trial {
    position: fixed;
    z-index: 800;
    right: 0;
    bottom: 112px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 10px 16px;
    border: 0;
    border-radius: 4px 0 0 4px;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 8px 24px rgba(17, 27, 33, 0.22);
    font-weight: 800;
    cursor: pointer;
}

.floating-trial:hover {
    background: var(--green-dark);
}

.trial-modal {
    position: fixed;
    z-index: 1500;
    inset: 0;
    display: none;
    place-items: center;
    padding: 22px;
}

.trial-modal.is-open {
    display: grid;
}

.trial-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 18, 0.72);
}

.trial-dialog {
    position: relative;
    z-index: 1;
    width: min(620px, 100%);
    max-height: calc(100vh - 44px);
    padding: 42px;
    overflow-y: auto;
    border-top: 5px solid var(--green);
    border-radius: 6px;
    background: var(--white);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.trial-dialog h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.3;
}

.modal-intro {
    margin: 14px 0 26px;
    color: var(--muted);
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
}

.contact-methods {
    border-top: 1px solid var(--line);
}

.contact-method {
    display: grid;
    grid-template-columns: 42px 1fr 40px;
    gap: 14px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.contact-method > i {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 4px;
    color: var(--green);
    background: #e8f1ed;
}

.contact-method div span,
.contact-method div a,
.contact-method div strong {
    display: block;
}

.contact-method div span {
    color: var(--muted);
    font-size: 11px;
}

.contact-method div a,
.contact-method div strong {
    margin-top: 2px;
    font-size: 17px;
}

.modal-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 12px;
}

.modal-footer i {
    margin-right: 7px;
    color: var(--green);
}

#copyStatus {
    color: var(--green);
    font-weight: 700;
}

[hidden] {
    display: none !important;
}

@media (max-width: 1260px) {
    .site-header {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav {
        display: none;
    }

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

    .source-strip {
        grid-template-columns: 190px 1fr;
        overflow: hidden;
    }

    .source-list {
        overflow-x: auto;
    }

    .source-list span {
        min-width: 190px;
    }

    .release-section {
        grid-template-columns: 0.5fr 1fr 2fr;
    }

    .release-section > .button {
        grid-column: 2 / -1;
        justify-self: start;
    }

    .operations-section {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .final-cta {
        grid-template-columns: 1fr 2fr;
    }

    .final-cta > div {
        grid-column: 2;
        flex-direction: row;
        justify-self: start;
    }
}

@media (max-width: 980px) {
    .section,
    .operations-section,
    .contact-section {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .hero {
        min-height: 700px;
    }

    .hero::before {
        width: 78vw;
    }

    .hero-content {
        width: 74vw;
    }

    .hero h1 {
        font-size: 60px;
    }

    .creator-strip {
        grid-template-columns: 220px minmax(0, 1fr);
    }

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

    .creator-strip-links a:nth-child(-n + 2) {
        border-bottom: 1px solid #344148;
    }

    .section-heading-wide {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .release-section {
        grid-template-columns: 150px 1fr;
    }

    .release-list {
        grid-column: 1 / -1;
    }

    .release-section > .button {
        grid-column: 2;
    }

    .comparison-wrap,
    .deploy-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

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

    .trial-summary {
        min-height: 420px;
    }

    .deploy-copy {
        padding: 76px var(--page-gutter) 40px;
        border-right: 0;
        border-bottom: 1px solid var(--line-dark);
    }

    .deploy-console {
        min-height: 420px;
        padding: 42px var(--page-gutter) 64px;
    }

    .site-footer {
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 720px) {
    :root {
        --nav-height: 64px;
    }

    .site-header {
        min-height: var(--nav-height);
    }

    .brand small,
    .icon-link,
    .header-trial span {
        display: none;
    }

    .header-trial {
        width: 40px;
        min-height: 40px;
        padding: 0;
    }

    .header-trial i {
        margin: 0;
    }

    .hero {
        align-items: flex-end;
        min-height: min(760px, calc(100svh - var(--nav-height) - 52px));
    }

    .hero-media {
        object-position: 54% top;
    }

    .hero-shade {
        background: rgba(6, 12, 17, 0.78);
    }

    .hero::before {
        display: none;
    }

    .hero-content {
        width: 100%;
        padding: 52px var(--page-gutter) 52px;
        background: rgba(8, 16, 21, 0.72);
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-lead {
        font-size: 23px;
    }

    .hero-copy {
        font-size: 15px;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-facts {
        margin-top: 26px;
    }

    .hero-facts strong {
        font-size: 16px;
    }

    .hero-next {
        display: none;
    }

    .creator-strip {
        display: block;
    }

    .creator-strip-intro {
        min-height: 58px;
        padding: 10px var(--page-gutter);
        border-right: 0;
        border-bottom: 1px solid #344148;
    }

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

    .creator-strip-links a {
        min-height: 72px;
        padding: 12px var(--page-gutter);
    }

    .creator-strip-links a:nth-child(2n) {
        border-right: 0;
    }

    .creator-strip-links a:nth-child(-n + 2) {
        border-bottom: 1px solid #344148;
    }

    .creator-strip-links strong {
        font-size: 12px;
    }

    .source-strip {
        display: block;
    }

    .source-strip-label {
        min-height: 52px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .source-list {
        display: flex;
    }

    .source-list span {
        min-height: 64px;
    }

    .section-heading h2,
    .release-copy h2,
    .operations-intro h2,
    .deploy-copy h2,
    .contact-copy h2,
    .final-cta h2 {
        font-size: 30px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

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

    .capability {
        min-height: 270px;
        padding: 30px 26px;
    }

    .release-section {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 64px var(--page-gutter);
    }

    .release-number {
        font-size: 74px;
    }

    .release-list {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .release-list > div {
        min-height: 130px;
    }

    .release-section > .button {
        grid-column: auto;
        width: 100%;
    }

    .product-tabs {
        margin-right: calc(var(--page-gutter) * -1);
        padding-right: var(--page-gutter);
    }

    .product-stage {
        min-height: 250px;
        margin-right: calc(var(--page-gutter) * -1);
        margin-left: calc(var(--page-gutter) * -1);
        border-right: 0;
        border-left: 0;
    }

    .product-panel img {
        min-height: 240px;
        object-fit: cover;
        object-position: left top;
    }

    .product-panel figcaption {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 20px var(--page-gutter);
    }

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

    .operations-flow li {
        min-height: 230px;
        border-bottom: 1px solid var(--line);
    }

    .operations-flow li:nth-child(3) {
        border-left: 1px solid var(--line);
    }

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

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

    .social-channel {
        min-height: 250px;
    }

    .comparison-wrap {
        margin-right: calc(var(--page-gutter) * -1);
        margin-left: calc(var(--page-gutter) * -1);
    }

    .comparison-table th,
    .comparison-table td {
        padding: 13px 12px;
        font-size: 13px;
    }

    .trial-summary {
        min-height: 400px;
        padding: 34px var(--page-gutter);
    }

    .pricing-grid {
        display: flex;
        margin-right: calc(var(--page-gutter) * -1);
        padding-right: var(--page-gutter);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .price-card {
        flex: 0 0 min(82vw, 330px);
        min-height: 430px;
        scroll-snap-align: start;
    }

    .deploy-step {
        grid-template-columns: 30px 1fr;
    }

    .deploy-step pre {
        grid-column: 1 / -1;
    }

    .faq-item summary {
        grid-template-columns: 32px 1fr 18px;
        gap: 10px;
    }

    .faq-item > p {
        padding-left: 42px;
    }

    .contact-section {
        gap: 42px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .form-row-wide {
        grid-column: auto;
    }

    .contact-form .button {
        width: 100%;
    }

    .form-status {
        text-align: center;
    }

    .final-cta {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 64px var(--page-gutter);
    }

    .final-cta > div {
        grid-column: auto;
        flex-direction: column;
        align-items: stretch;
        justify-self: stretch;
        margin-top: 14px;
    }

    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 20px;
        padding-top: 54px;
    }

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

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

    .floating-trial {
        bottom: 22px;
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .floating-trial span {
        display: none;
    }

    .trial-dialog {
        padding: 34px 22px 24px;
    }

    .trial-dialog h2 {
        padding-right: 34px;
        font-size: 25px;
    }

    .contact-method {
        grid-template-columns: 40px minmax(0, 1fr) 38px;
        gap: 10px;
    }

    .contact-method div a,
    .contact-method div strong {
        overflow-wrap: anywhere;
        font-size: 15px;
    }

    .modal-footer {
        display: block;
    }

    #copyStatus {
        display: block;
        margin-top: 7px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
