@font-face {
    font-family: Poppins-Regular;
    src: url(../fonts/Poppins-Regular.ttf)
}

@font-face {
    font-family: Poppins-Bold;
    src: url(../fonts/Poppins-Bold.ttf)
}

:root {
    --color-navy-deep: #0b2f62;
    --color-navy-mid: #133d79;
    --color-blue-brand: #3588f3;
    --color-blue-nav: #104e97;
    --color-blue-feature: #154382;
    --color-pricing-title: #fff;
    --color-pricing-heading: rgb(15, 78, 151);
    --color-pricing-subtitle: rgb(62, 62, 62);
    --color-pricing-tagline: #999;
    --color-pricing-note-bg: #eee;
    --color-pricing-note-text: #333;
    --color-accent: #feca00;
    --color-link-soft: #69b7fc;
    --color-muted-on-blue: #ddd;
    --color-footer-bg: #303846;
    --color-footer-link: #b8c4ce;
    --color-footer-title: #fff;
    --color-step-1: #f5275d;
    --color-step-2: #facc02;
    --color-step-3: #3eca73;
    --shadow-card: 0 2px 16px rgb(0 0 0 / 20%);
    --radius-card: 10px;
    --radius-sm: 3px;
    --font-bold: "Poppins-Bold", system-ui, -apple-system, sans-serif;
    --font-sans: "Poppins-Regular", system-ui, -apple-system, sans-serif;
    --nav-height: 3.75rem;
    --content-max: 72rem;
    --step-ring: 2px solid #fff;
    --font-line-height: 1.65;
}

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

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.5;
    color: #1a1a1a;
    background: var(--color-navy-deep);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: inherit;
}

ul {
    margin: 0;
    padding-left: 2rem;
}

/* ----- Inline code ----- */

code {
    font-family: ui-monospace, "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.875em;
    padding: 0.12em 0.42em;
    background: rgb(15 78 151 / 8%);
    border: 1px solid rgb(15 78 151 / 16%);
    border-radius: 4px;
    color: rgb(26 45 74);
    white-space: break-spaces;
}

/* ----- Page shell ----- */

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    background: linear-gradient(to right bottom, var(--color-blue-brand) 0%, var(--color-navy-deep) 100%);
    padding: 0;
}

.container {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: 16px;
}

/* ----- Skip link ----- */

.skip-link {
    position: fixed;
    top: 1rem;
    left: 100%;
    z-index: 200;
    padding: 0.5rem 1rem;
    background: #fff;
    color: var(--color-navy-deep);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
}

.skip-link:focus {
    left: 1rem;
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ----- Site header / nav ----- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-height);
    background: var(--color-blue-nav);
    box-shadow: 0 1px 0 rgb(0 0 0 / 12%);
}

.site-header__inner {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
    height: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: clamp(1rem, 4vw, 2rem);
}

@media (min-width: 769px) {
    .site-header__inner {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ececec;
    font-weight: 700;
    min-width: 0;
    flex: 1 1 auto;
}

@media (min-width: 769px) {
    .site-brand {
        flex: 0 1 auto;
    }
}

.site-brand__logo {
    flex-shrink: 0;
}

.site-brand__logo img {
    display: block;
    width: 2.25rem;
    height: auto;
    border-radius: 5px;
}

.site-brand__title {
    font-size: 1.125rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

.nav-toggle {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    margin: 0;
}

.nav-toggle-label {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    margin-left: auto;
    padding: 0;
    color: #ececec;
    cursor: pointer;
    border-radius: 6px;
    border: none;
    background: transparent;
}

.nav-toggle-label:hover {
    background: rgb(255 255 255 / 8%);
}

.nav-toggle:focus-visible+.nav-toggle-label {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.site-nav {
    flex: 0 0 auto;
}

@media (min-width: 769px) {
    .site-nav {
        max-height: none !important;
        overflow: visible !important;
        border: none !important;
        margin-inline: 0 !important;
        padding-inline: 0 !important;
    }
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__link {
    font-weight: 400;
    color: #ececec;
    text-decoration: none;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
    color: #fff;
    border-bottom-color: var(--color-accent);
}

.site-nav__link--active {
    color: #fff;
    border-bottom-color: var(--color-accent);
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: flex;
    }

    .site-header__inner {
        flex-wrap: nowrap;
    }

    .site-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        z-index: 150;
        flex: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        background: var(--color-blue-nav);
        border-top: 1px solid transparent;
        margin-inline: 0;
        padding-inline: clamp(1rem, 4vw, 2rem);
        box-shadow: 0 12px 24px rgb(0 0 0 / 18%);
    }

    .nav-toggle:checked~.site-nav {
        max-height: 14rem;
        border-top-color: rgb(255 255 255 / 10%);
    }

    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem 0 1rem;
        gap: 0;
    }

    .site-nav__link {
        display: block;
        padding: 0.65rem 0;
    }
}

/* ----- Hero ----- */

.hero {
    padding: 32px;
    color: #fff;
    line-height: var(--font-line-height);
}

.hero__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.hero__copy {
    min-width: 300px;
    max-width: 500px;
}

.hero__headline {
    margin: 0 0 25px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
}

.hero__intro {
    margin: 0;
    font-size: 1rem;
}

.hero__subhead {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.hero__lists {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 2rem;
    margin-top: 0.5rem;
}

.hero__lists ul {
    margin: 0;
}

.hero__more {
    display: inline-block;
    margin-top: 1rem;
    padding-left: 1rem;
}

.hero__visual {
    margin: 10px;
}

.hero__visual img {
    max-width: 400px;
    margin-inline: auto;
}

/* ----- CTA strip (trial banner) ----- */

.cta-strip {
    padding: 0;
    margin: 25px 0;
    background: transparent;
    color: #fff;
}

.cta-strip__inner {
    margin-inline: auto;
    width: 100%;
    padding: 20px 20px 25px 20px;
    background: var(--color-blue-brand);
    box-shadow: var(--shadow-card);
}

.cta-strip__text {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
}

.cta-strip__hint {
    margin: 0.75rem 0 0;
    font-size: 16px;
    color: var(--color-muted-on-blue);
    text-align: center;
}

.accent {
    color: var(--color-accent);
}

/* ----- Buttons row (monday install) ----- */

.btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-row a {
    display: inline-flex;
    line-height: 0;
    border-radius: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-row a:hover,
.btn-row a:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgb(0 0 0 / 25%);
    outline: none;
}

.btn-row img {
    display: block;
}

/* ----- Features ----- */

.features {
    padding: 3.75rem 0;
}

.features__heading {
    margin: 0 auto 1.5rem;
    max-width: 48rem;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.125rem;
    padding-inline: 1rem;
}

.features__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    margin-top: 1.5rem;
    color: var(--color-blue-feature);
}

.feature-card {
    flex: 0 1 25rem;
    max-width: 100%;
    width: 25rem;
    background: #fff;
    border-radius: var(--radius-card);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 4px 24px rgb(0 0 0 / 12%);
}

.feature-card h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card ul {
    padding-left: 1.1rem;
}

.feature-card li+li {
    margin-top: 0.35rem;
}

/* ----- Steps ----- */

.steps-card {
    margin: 0 auto 3rem;
    max-width: 42rem;
    padding: 1.25rem clamp(1rem, 3vw, 1.5rem);
    border: 2px solid #fff;
    background: #fff;
    border-radius: var(--radius-sm);
    color: var(--color-navy-mid);
    box-shadow: var(--shadow-card);
}

.steps-card__title {
    margin: 0 0 1rem;
    font-size: 1.4375rem;
    font-weight: 900;
}

.step-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-row+.step-row {
    margin-top: 0.5rem;
}

.step-badge {
    flex-shrink: 0;
    min-width: 2.7rem;
    padding: 0.35rem;
    border-radius: 999px;
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 1.125rem;
    border: var(--step-ring);
}

.step-badge--1 {
    background: var(--color-step-1);
}

.step-badge--2 {
    background: var(--color-step-2);
    margin-top: 0.35rem;
}

.step-badge--3 {
    background: var(--color-step-3);
    margin-top: 0.35rem;
}

.step-row__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.35;
}

.step-row--2 .step-row__text {
    padding-top: 0.25rem;
}

.step-row--3 .step-row__text {
    padding-top: 0.5rem;
}

/* ----- Closing CTA ----- */

.closing {
    margin-bottom: 3.75rem;
    padding-inline: 1rem;
}

.closing__title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    color: #fff;
}

.closing__contact {
    margin: 3rem 0 0;
    font-size: 1.125rem;
    text-align: center;
    color: #fff;
}

.closing__contact a {
    color: var(--color-link-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.closing__contact a:hover {
    color: #fff;
}

/* ----- Footer ----- */

.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-link);
    padding: 2rem 1rem 1.5rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    justify-content: space-evenly;
    max-width: var(--content-max);
    margin-inline: auto;
}

@media (max-width: 499px) {
    .footer-grid {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.5rem;
    }
}

.footer-col__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-footer-title);
}

.footer-col__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col__list li+li {
    margin-top: 0.35rem;
}

.footer-col__list a {
    color: var(--color-footer-link);
    text-decoration: none;
    line-height: 1.6;
}

.footer-col__list a:hover,
.footer-col__list a:focus-visible {
    color: #fff;
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-footer-link);
}

/* ----- Pricing page ----- */

.pricing-page {
    padding: clamp(1.25rem, 4vw, 1.875rem) 0 3rem;
}

.pricing-page__title {
    margin: 0 0 1.5rem;
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--color-pricing-title);
}

.pricing-card {
    max-width: 44rem;
    margin-inline: auto;
    padding: clamp(1.25rem, 3vw, 1.75rem);
    background: #fff;
    border: 1px solid var(--color-pricing-heading);
    border-radius: var(--radius-card);
    box-shadow: 0 4px 24px rgb(0 0 0 / 12%);
    color: #1a1a1a;
}

.pricing-card__subtitle {
    margin: 0 0 0.5rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-pricing-subtitle);
}

.pricing-card__tagline {
    margin: 0 0 1.75rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-pricing-tagline);
}

.pricing-card__section-title {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-pricing-heading);
}

.pricing-card__tagline+.pricing-card__section-title {
    margin-top: 2rem;
}

.pricing-card p a {
    color: var(--color-pricing-heading);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing-card p a:hover {
    color: var(--color-blue-brand);
}

.pricing-card hr {
    margin: 1.25rem 0;
    border: none;
    border-top: 1px solid rgb(15 78 151 / 18%);
}

.pricing-card__label {
    margin: 0.25rem 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-select {
    width: 100%;
    max-width: 100%;
    margin-top: 0.25rem;
    padding: 0.45rem 0.65rem;
    font-family: inherit;
    font-size: 1.125rem;
    line-height: 1.3;
    color: var(--color-pricing-heading);
    background: #fff;
    border: 1px solid var(--color-pricing-heading);
    border-radius: 5px;
    box-shadow: none;
    min-height: 2.25rem;
    cursor: pointer;
}

.pricing-select:focus-visible {
    outline: 2px solid var(--color-blue-brand);
    outline-offset: 2px;
}

.pricing-tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
}

.pricing-tier {
    flex: 1 1 11rem;
    min-width: min(100%, 11rem);
    border: 1px solid var(--color-pricing-heading);
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    background: #fff;
}

.pricing-tier__label {
    margin: 0;
    padding: 0.35rem 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-pricing-heading);
    background: #fff;
    border-bottom: 1px solid var(--color-pricing-heading);
}

.pricing-tier__body {
    padding: 0.75rem 0.65rem 1rem;
}

.pricing-tier__amount {
    margin: 0;
    font-size: clamp(1.75rem, 5vw, 1.875rem);
    font-weight: 700;
    color: var(--color-pricing-heading);
}

.pricing-tier__hint {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    color: #444;
    line-height: 1.35;
}

.pricing-note {
    margin-top: 0.75rem;
    padding: 0.75rem 0.65rem;
    border-radius: 5px;
    background: var(--color-pricing-note-bg);
    color: var(--color-pricing-note-text);
}

.pricing-note p {
    margin: 0;
    font-size: 1rem;
}

.pricing-note p+p {
    margin-top: 0.35rem;
    font-size: 0.875rem;
}

.pricing-note a {
    color: var(--color-pricing-heading);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing-note a:hover {
    color: var(--color-blue-brand);
}

.pricing-card__link-block {
    margin-top: 0.65rem;
}

.pricing-card__link-block a {
    color: var(--color-pricing-heading);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pricing-card__link-block a:hover {
    color: var(--color-blue-brand);
}

/* ----- Legal pages (terms, privacy, etc.) ----- */

.legal-page {
    padding: clamp(1.5rem, 4vw, 2.5rem) 0 3rem;
}

.legal-panel {
    max-width: 42rem;
    margin-inline: auto;
    padding: clamp(1.5rem, 4vw, 2.25rem);
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid rgb(15 78 151 / 15%);
    box-shadow: 0 4px 24px rgb(0 0 0 / 10%);
    color: #1a1a1a;
    line-height: var(--font-line-height, 1.65);
}

.legal-panel__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.5rem, 4vw, 1.875rem);
    font-weight: 800;
    color: var(--color-pricing-heading);
}

.legal-panel__heading {
    margin: 2rem 0 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-pricing-heading);
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
}

.legal-panel p {
    margin: 0 0 1rem;
}

.legal-panel p:last-child {
    margin-bottom: 0;
}

.legal-panel__list {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.legal-panel__list li+li {
    margin-top: 0.35rem;
}

.legal-panel a {
    color: var(--color-pricing-heading);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-panel a:hover {
    color: var(--color-blue-brand);
}

.legal-layout {
    display: grid;
    gap: 1.75rem;
    align-items: start;
    max-width: var(--content-max);
    margin-inline: auto;
}

.legal-layout .legal-panel {
    margin-inline: 0;
    max-width: none;
    width: 100%;
}

.legal-panel__meta {
    margin: -0.5rem 0 1.25rem;
    color: #555;
}

.legal-panel__subheading {
    margin: 1.5rem 0 0.65rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-pricing-heading);
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
}

.legal-panel__heading {
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
}

.legal-toc {
    padding: 1rem 1rem 1rem 1.15rem;
    background: rgb(255 255 255 / 94%);
    border-radius: var(--radius-card);
    border: 1px solid rgb(15 78 151 / 12%);
    box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
}

.legal-toc__title {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-pricing-heading);
}

.legal-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    line-height: 1.35;
}

.legal-toc__list>li+li {
    margin-top: 0.4rem;
}

.legal-toc__list ul {
    margin: 0.35rem 0 0.5rem;
    padding-left: 0.85rem;
    list-style: none;
    border-left: 1px solid rgb(15 78 151 / 15%);
}

.legal-toc__list ul li+li {
    margin-top: 0.3rem;
}

.legal-toc a {
    color: var(--color-pricing-heading);
    font-weight: 500;
    text-decoration: none;
}

.legal-toc a:hover {
    text-decoration: underline;
    color: var(--color-blue-brand);
}

.legal-table-wrap {
    margin: 0 0 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    border: 1px solid rgb(15 78 151 / 18%);
}

.legal-table {
    width: 100%;
    min-width: 18rem;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.legal-table th,
.legal-table td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgb(15 78 151 / 12%);
}

.legal-table th {
    background: rgb(15 78 151 / 8%);
    font-weight: 700;
    color: var(--color-pricing-heading);
}

.legal-table tbody tr:last-child th,
.legal-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 959px) {
    .legal-toc {
        order: -1;
    }
}

@media (min-width: 960px) {
    .legal-layout {
        grid-template-columns: minmax(0, 1fr) 13.5rem;
        gap: 2rem 2.5rem;
        align-items: start;
    }

    .legal-panel--with-toc {
        grid-column: 1;
        grid-row: 1;
    }

    .legal-toc {
        grid-column: 2;
        grid-row: 1;
        position: sticky;
        top: calc(var(--nav-height) + 1rem);
        max-height: calc(100vh - var(--nav-height) - 2rem);
        overflow-y: auto;
    }
}

/* ----- Documentation ----- */

.body--docs .content {
    background: #f0f4f8;
}

.docs-shell {
    position: relative;
}

.docs-shell--standalone .docs-layout--standalone {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

@media (min-width: 900px) {
    .docs-shell--standalone .docs-layout--standalone {
        grid-template-columns: minmax(0, 1fr);
    }
}

.docs-breadcrumb {
    margin: 0 0 1rem;
    font-size: 0.8125rem;
    line-height: 1.25;
    color: rgb(15 78 151 / 72%);
}

.docs-breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0.4rem;
    row-gap: 0.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-breadcrumb__crumb,
.docs-breadcrumb__sep {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    line-height: 1.25;
}

.docs-breadcrumb__sep {
    flex: 0 0 auto;
    color: rgb(15 78 151 / 38%);
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1;
}

.docs-breadcrumb__sep span {
    display: block;
    line-height: 1;
}

.docs-breadcrumb__link,
.docs-breadcrumb__current {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1.25;
    font-weight: 600;
}

.docs-breadcrumb__link {
    color: rgb(15 78 151 / 85%);
    text-decoration: none;
}

.docs-breadcrumb__link:hover {
    color: var(--color-blue-brand);
    text-decoration: underline;
}

.docs-breadcrumb__current {
    color: var(--color-navy-mid);
}

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

.docs-sidebar-open {
    display: none;
}

@media (max-width: 899px) {
    .docs-sidebar-open {
        position: sticky;
        top: var(--nav-height);
        z-index: 95;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        width: 100%;
        max-width: var(--content-max);
        margin: 0;
        padding: 0.65rem clamp(1rem, 4vw, 1.25rem);
        box-sizing: border-box;
        border: none;
        border-bottom: 1px solid rgb(15 78 151 / 14%);
        border-radius: 0;
        background: #fff;
        color: var(--color-pricing-heading);
        cursor: pointer;
        box-shadow: 0 2px 8px rgb(15 78 151 / 8%);
        font-family: var(--font-sans);
        text-align: left;
    }

    .docs-sidebar-open__icon {
        display: flex;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 6px;
        background: rgb(15 78 151 / 8%);
        color: var(--color-navy-mid);
    }

    .docs-sidebar-open__text {
        flex: 1;
        min-width: 0;
        font-family: var(--font-bold);
        font-size: 0.9375rem;
        line-height: 1.25;
        letter-spacing: 0.01em;
    }

    .docs-sidebar-open:hover {
        background: rgb(15 78 151 / 5%);
        color: var(--color-blue-brand);
    }

    .docs-sidebar-open:hover .docs-sidebar-open__icon {
        background: rgb(53 136 243 / 15%);
        color: var(--color-blue-brand);
    }

    .docs-sidebar-open:active {
        background: rgb(15 78 151 / 8%);
    }

    .docs-sidebar-open:focus-visible {
        outline: 2px solid var(--color-blue-brand);
        outline-offset: 2px;
    }

    #docs-nav-toggle:checked ~ .docs-sidebar-open {
        background: rgb(53 136 243 / 10%);
        border-bottom-color: rgb(53 136 243 / 35%);
    }

    #docs-nav-toggle:checked ~ .docs-sidebar-open .docs-sidebar-open__icon {
        background: rgb(53 136 243 / 22%);
        color: var(--color-blue-brand);
    }
}

@media (min-width: 900px) {
    .docs-sidebar-open {
        display: none !important;
    }
}

.docs-layout {
    width: 100%;
    max-width: var(--content-max);
    margin-inline: auto;
    padding: 1rem 16px 2.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: start;
}

@media (min-width: 900px) {
    .docs-layout {
        grid-template-columns: 13.5rem minmax(0, 1fr);
        gap: 30px;
        padding-top: 1.5rem;
    }
}

.docs-sidebar {
    position: fixed;
    z-index: 120;
    top: var(--nav-height);
    left: 0;
    width: min(17.5rem, 88vw);
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
    padding: 1rem 1rem 1.25rem;
    background: #fff;
    border-right: 1px solid rgb(15 78 151 / 12%);
    box-shadow: 4px 0 24px rgb(0 0 0 / 8%);
    transform: translateX(-102%);
    transition: transform 0.2s ease;
    -webkit-overflow-scrolling: touch;
}

#docs-nav-toggle:checked~.docs-layout .docs-sidebar {
    transform: translateX(0);
}

@media (min-width: 900px) {
    .docs-sidebar {
        position: sticky;
        top: calc(var(--nav-height) + 1rem);
        width: 100%;
        max-width: 100%;
        min-width: 0;
        max-height: calc(100vh - var(--nav-height) - 2rem);
        transform: none;
        box-shadow: none;
        border: 1px solid rgb(15 78 151 / 12%);
        border-radius: 8px;
        padding: 1rem 1rem 1.25rem;
    }
}

.docs-sidebar__list + .docs-sidebar__list {
    margin-top: 1.25rem;
}

.docs-sidebar__heading-link {
    display: block;
    margin: 0 0 0.45rem;
    padding: 0.35rem 0.4rem;
    font-family: var(--font-bold);
    font-size: 0.6875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgb(15 78 151 / 65%);
    text-decoration: none;
    border-radius: 4px;
}

.docs-sidebar__heading-link:hover {
    color: var(--color-blue-brand);
    background: rgb(15 78 151 / 6%);
}

.docs-sidebar__heading-link--active {
    color: var(--color-navy-mid);
    background: rgb(53 136 243 / 12%);
}

.docs-sidebar__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-sidebar__list>li+li {
    margin-top: 0.2rem;
}

.docs-sidebar__link {
    display: block;
    padding: 0.35rem 0.4rem;
    font-size: 0.875rem;
    line-height: 1.35;
    color: var(--color-pricing-heading);
    text-decoration: none;
    border-radius: 4px;
    overflow-wrap: break-word;
}

.docs-sidebar__link:hover {
    background: rgb(15 78 151 / 8%);
    color: var(--color-blue-brand);
}

.docs-sidebar__link--active {
    background: rgb(53 136 243 / 12%);
    color: var(--color-navy-mid);
    font-weight: 600;
}

.docs-scrim {
    display: block;
    position: fixed;
    z-index: 110;
    inset: 0;
    top: var(--nav-height);
    background: rgb(11 47 98 / 45%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    cursor: pointer;
}

#docs-nav-toggle:checked~.docs-scrim {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

@media (min-width: 900px) {
    .docs-scrim {
        display: none;
    }
}

.docs-main-wrap {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 1100px) {
    .docs-main-wrap {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 11rem;
        column-gap: 30px;
        align-items: start;
    }

    .docs-toc--mobile {
        display: none;
    }

    .docs-main {
        grid-column: 1;
    }

    .docs-toc--rail {
        grid-column: 2;
        grid-row: 1;
    }
}

.docs-toc {
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid rgb(15 78 151 / 14%);
    border-radius: 8px;
    font-size: 0.8125rem;
}

.docs-toc__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-bold);
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgb(15 78 151 / 65%);
}

.docs-toc__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.docs-toc__list li+li {
    margin-top: 0.35rem;
}

.docs-toc a {
    color: var(--color-pricing-heading);
    text-decoration: none;
}

.docs-toc a:hover {
    color: var(--color-blue-brand);
    text-decoration: underline;
}

.docs-toc--rail {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
    max-height: calc(100vh - var(--nav-height) - 2rem);
    overflow-y: auto;
    display: none;
}

@media (min-width: 1100px) {
    .docs-toc--rail {
        display: block;
    }
}

.docs-main {
    min-width: 0;
}

.docs-article {
    padding: 1.25rem 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgb(15 78 151 / 14%);
    border-radius: 10px;
    font-size: 0.9375rem;
    line-height: var(--font-line-height);
    color: #2a2a2a;
}

.docs-article__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-bold);
    font-size: 1.75rem;
    line-height: 1.2;
    color: var(--color-navy-deep);
}

.docs-index {
    margin: 0;
}

.docs-index > .docs-article__title {
    margin-bottom: 1.25rem;
}

.docs-index-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .docs-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.docs-index-card {
    display: block;
    padding: 1.15rem 1.25rem;
    border: 1px solid rgb(15 78 151 / 16%);
    border-radius: 10px;
    background: rgb(15 78 151 / 4%);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.docs-index-card:hover {
    border-color: rgb(53 136 243 / 45%);
    box-shadow: 0 4px 14px rgb(15 78 151 / 10%);
    background: rgb(53 136 243 / 8%);
}

.docs-index-card:focus-visible {
    outline: 2px solid var(--color-blue-brand);
    outline-offset: 2px;
}

.docs-index-card__title {
    margin: 0 0 0.45rem;
    font-family: var(--font-bold);
    font-size: 1.0625rem;
    line-height: 1.3;
    color: var(--color-pricing-heading);
}

.docs-index-card__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: var(--font-line-height);
    color: rgb(42 42 42 / 88%);
}

.docs-article__lead {
    margin: 0 0 1.5rem;
    font-size: 1.0625rem;
    color: rgb(42 42 42 / 88%);
}

.docs-article__lead+.docs-article__h2 {
    margin-top: 1.25rem;
}

.docs-article__h2 {
    margin: 1.75rem 0 0.65rem;
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
    font-family: var(--font-bold);
    font-size: 1.0625rem;
    line-height: 1.35;
    color: var(--color-pricing-heading);
}

.docs-article__title + .docs-article__h2 {
    margin-top: 1.25rem;
}

.docs-article__h3 {
    margin: 1.35rem 0 0.5rem;
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
    font-family: var(--font-bold);
    font-size: 1rem;
    line-height: 1.35;
    color: var(--color-pricing-heading);
}

.docs-article__h4 {
    margin: 1.1rem 0 0.45rem;
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
    font-family: var(--font-bold);
    font-size: 0.9375rem;
    line-height: 1.35;
    color: var(--color-pricing-heading);
}

.docs-article__h5 {
    margin: 0.85rem 0 0.35rem;
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
    font-family: var(--font-bold);
    font-size: 0.875rem;
    line-height: 1.35;
    color: var(--color-pricing-heading);
}

@media (max-width: 899px) {
    .body--docs .docs-article__title,
    .body--docs .docs-article__h2,
    .body--docs .docs-article__h3,
    .body--docs .docs-article__h4,
    .body--docs .docs-article__h5,
    .body--docs .docs-faq-item {
        scroll-margin-top: calc(var(--nav-height) + 3.75rem + 0.75rem);
    }
}

.docs-toc__list--nested {
    margin: 0.35rem 0 0 0.5rem;
    padding: 0 0 0 0.75rem;
    list-style: none;
    border-left: 1px solid rgb(15 78 151 / 18%);
}

.docs-toc__list--nested li + li {
    margin-top: 0.28rem;
}

.docs-article p {
    margin: 0 0 1rem;
}

.docs-article p:last-child {
    margin-bottom: 0;
}

.docs-article ol {
    margin: 0 0 1rem;
}

.docs-article ol li:last-child {
    margin-bottom: 0;
}

.docs-article ul {
    margin: 0 0 1rem;
    padding-left: 1.35rem;
}

.docs-article ul li {
    margin: 0 0 0.5rem;
}

.docs-article ul li:last-child {
    margin-bottom: 0;
}

/* Docusaurus-style code blocks (imported docs) */
.docs-article .codeBlockContainer_Ckt0,
.docs-article .theme-code-block {
    margin: 0 0 1.15rem;
}

.docs-article pre.prism-code,
.docs-article pre.codeBlock_bY9V {
    margin: 0;
    max-width: 100%;
    overflow-x: auto;
    padding: 1rem 1.1rem;
    background: #f6f8fa;
    border: 1px solid rgb(15 78 151 / 14%);
    border-radius: 8px;
    font-size: 0.8125rem;
    line-height: 1.45;
    -webkit-overflow-scrolling: touch;
}

.docs-article pre code {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    white-space: pre;
}

.docs-article div[style*="max-width"] {
    margin: 0.75rem 0 1rem;
    width: fit-content;
    max-width: 100%;
}

.docs-article div[style*="max-width"] img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgb(15 78 151 / 12%);
}

.docs-callout {
    margin: 1rem 0 1.25rem;
    padding: 0.85rem 1rem;
    border-left: 4px solid var(--color-blue-brand);
    background: rgb(53 136 243 / 8%);
    border-radius: 0 6px 6px 0;
}

.docs-callout p {
    margin: 0 0 0.5rem;
}

.docs-faq-item {
    margin: 0 0 0.75rem;
    scroll-margin-top: calc(var(--nav-height) + 0.75rem);
    border: 1px solid rgb(15 78 151 / 18%);
    border-radius: 8px;
    background: #fff;
}

.docs-faq-item:last-of-type {
    margin-bottom: 0;
}

.docs-faq-item__summary {
    cursor: pointer;
    padding: 0.85rem 1rem;
    font-family: var(--font-bold);
    font-size: 0.9375rem;
    line-height: 1.4;
    color: var(--color-pricing-heading);
    list-style: none;
}

.docs-faq-item__summary::-webkit-details-marker {
    display: none;
}

.docs-faq-item__summary::before {
    content: '\25B6';
    display: inline-block;
    margin-right: 0.45rem;
    font-size: 0.65em;
    vertical-align: 0.08em;
    transition: transform 0.15s ease;
}

.docs-faq-item[open] > .docs-faq-item__summary::before {
    transform: rotate(90deg);
}

.docs-faq-item__body {
    padding: 0 1rem 1rem;
    border-top: 1px solid rgb(15 78 151 / 10%);
}

.docs-faq-item__body > :first-child {
    margin-top: 0.85rem;
}

.docs-faq-item__body img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid rgb(15 78 151 / 12%);
}

.docs-article__cta {
    margin: 0.75rem 0 1.25rem;
}

.docs-video-embed {
    margin: 1rem 0 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgb(0 0 0 / 10%);
    border: 1px solid rgb(15 78 151 / 14%);
}

/* Reserve exact vertical space for 16:9; iframe must fill this box (not a fixed px height) or it overlaps following flow. */
.docs-video-embed__ratio {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0b1f33;
}

@supports not (aspect-ratio: 16 / 9) {
    .docs-video-embed__ratio {
        height: 0;
        padding-bottom: 56.25%;
    }
}

.docs-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.docs-support-cta {
    margin-top: 1.5rem;
    padding: 1.15rem 1.1rem;
    background: rgb(15 78 151 / 7%);
    border: 1px solid rgb(15 78 151 / 16%);
    border-radius: 10px;
}

.docs-support-cta__text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #2a2a2a;
}

.docs-support-cta a {
    color: var(--color-blue-brand);
    font-weight: 600;
    text-decoration: none;
}

.docs-support-cta a:hover {
    text-decoration: underline;
}

.docs-placeholder {
    margin: 0;
    color: rgb(42 42 42 / 85%);
}

.docs-pager {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    padding: 1rem 0 0;
    border-top: 1px solid rgb(15 78 151 / 12%);
}

.docs-pager__side {
    flex: 1 1 10rem;
    min-width: 0;
}

.docs-pager__side--next {
    text-align: right;
}

.docs-pager__hint {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgb(15 78 151 / 55%);
}

.docs-pager__link {
    font-family: var(--font-bold);
    font-size: 0.9375rem;
    color: var(--color-blue-brand);
    text-decoration: none;
}

.docs-pager__link:hover {
    text-decoration: underline;
}