:root {
    --brand: #15a2b8;
    --brand-dark: #0a5060;
    --brand-action: #0a5060;
    --ink: #172033;
    --muted: #667085;
    --line: #d7e5ea;
    --soft: #eef6f8;
    --paper: #ffffff;
    --accent: #f2a900;
    --ok: #16803a;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--soft);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
    margin: 0;
}

a {
    color: var(--brand-dark);
    font-weight: 800;
    text-decoration: none;
}

.site-header {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 18px;
    justify-content: space-between;
    left: 0;
    min-height: 72px;
    padding: 14px clamp(16px, 2.4vw, 34px);
    position: sticky;
    right: 0;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    color: var(--ink);
    display: inline-flex;
    flex: 0 0 auto;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
}

.brand-mark {
    align-items: center;
    background: var(--brand-action);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.site-nav {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    gap: clamp(8px, 1vw, 14px);
    justify-content: flex-end;
    min-width: 0;
}

.site-nav a {
    color: #344054;
    font-size: 12.5px;
    line-height: 1.2;
    min-width: 0;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--brand-dark);
}

.nav-login {
    border: 1px solid var(--brand);
    border-radius: 8px;
    color: var(--brand-dark) !important;
    padding: 8px 10px;
}

.nav-toggle {
    background: transparent;
    border: 0;
    color: var(--brand);
    cursor: pointer;
    display: none;
    font-size: 30px;
    font-weight: 900;
}

.hero {
    background-position: center;
    background-size: cover;
    color: #ffffff;
    min-height: calc(100vh - 72px);
    overflow: hidden;
    position: relative;
}

.hero-shade {
    background: rgba(8, 25, 33, 0.66);
    inset: 0;
    position: absolute;
}

.hero-inner {
    max-width: 820px;
    padding: clamp(74px, 12vw, 150px) clamp(20px, 5vw, 72px) 170px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #80e4ef;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    font-size: clamp(54px, 9vw, 112px);
    line-height: 0.95;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(31px, 4vw, 52px);
    line-height: 1.04;
    margin-bottom: 18px;
}

h3 {
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-intro {
    font-size: clamp(19px, 2.4vw, 27px);
    max-width: 760px;
}

.hero-actions,
.footer-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-copy .hero-actions {
    margin-bottom: 26px;
}

.button {
    background: var(--brand-action);
    border: 2px solid var(--brand-action);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    padding: 12px 16px;
}

.button.secondary {
    background: #ffffff;
    color: var(--brand-dark);
}

.proof-strip {
    background: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    bottom: 0;
    color: var(--ink);
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    left: clamp(16px, 5vw, 72px);
    max-width: 820px;
    position: absolute;
    right: clamp(16px, 5vw, 72px);
    z-index: 2;
}

.proof-strip div {
    padding: 18px;
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    color: var(--brand-dark);
    font-size: 24px;
    line-height: 1;
}

.proof-strip span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    margin-top: 6px;
}

.section,
.page-main {
    margin: 0 auto;
    max-width: 1240px;
    padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 48px);
}

.split-intro {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.split-intro > div:first-child p,
.intro-copy {
    color: #344054;
    font-size: 18px;
}

.intro-copy h2 {
    font-size: 24px;
    line-height: 1.2;
}

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

.value-grid article,
.security-cards article,
.content-page {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
}

.value-grid p,
.security-cards p {
    color: var(--muted);
    margin-bottom: 0;
}

.module-band,
.audit-section,
.cta-section {
    background: var(--ink);
    color: #ffffff;
    max-width: none;
}

.module-band {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.module-band > *,
.audit-section > *,
.cta-section > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

.module-list,
.audit-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.module-list li,
.audit-list li {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    font-weight: 800;
    padding: 14px 16px;
}

.section-head {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    margin-bottom: 26px;
}

.section-head p {
    color: #344054;
    margin-bottom: 0;
}

.comparison-wrap {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow-x: auto;
}

.comparison-table {
    border-collapse: collapse;
    min-width: 1060px;
    width: 100%;
}

.comparison-table th,
.comparison-table td {
    border-bottom: 1px solid var(--line);
    padding: 16px;
    text-align: left;
    vertical-align: top;
}

.comparison-table thead th {
    background: #dff2f6;
    color: var(--brand-dark);
    font-size: 14px;
}

.comparison-table tbody th {
    background: #f7fbfc;
    color: var(--ink);
    width: 170px;
}

.comparison-table td {
    color: #475467;
    font-size: 14px;
}

.comparison-table .fregister-cell {
    background: #f0fbfd;
    color: var(--ink);
    font-weight: 800;
}

.source-note {
    align-items: center;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 10px;
    margin-top: 14px;
}

.showcase-section {
    background: #f7fbfc;
    max-width: none;
}

.showcase-section > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

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

.showcase-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(23, 32, 51, 0.08);
    overflow: hidden;
}

.showcase-panel-top {
    align-items: center;
    background: var(--ink);
    color: #ffffff;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 13px 15px;
}

.showcase-panel-top span {
    color: #ccecf2;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.showcase-panel-top strong {
    background: #dff2f6;
    border-radius: 999px;
    color: var(--brand-dark);
    font-size: 13px;
    padding: 6px 10px;
}

.showcase-card-main {
    background:
        linear-gradient(90deg, rgba(21, 162, 184, 0.13), transparent 58%),
        #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 18px 16px 16px;
}

.showcase-card-main span {
    color: var(--brand-dark);
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.showcase-card-main h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.showcase-card-main p {
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 0;
}

.showcase-panel ul {
    display: grid;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.showcase-panel li {
    border-bottom: 1px solid #edf3f5;
    color: #475467;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 16px;
}

.showcase-panel li::before {
    color: var(--brand-dark);
    content: "+";
    font-weight: 900;
    margin-right: 9px;
}

.showcase-progress {
    background: #edf3f5;
    height: 8px;
}

.showcase-progress span {
    background: var(--brand-action);
    display: block;
    height: 100%;
    width: 72%;
}

.security-grid {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.security-intro p {
    color: #344054;
    font-size: 18px;
}

.audit-section {
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.cta-section {
    padding: clamp(54px, 7vw, 92px) clamp(18px, 4vw, 48px) clamp(76px, 8vw, 120px);
    text-align: center;
}

.cta-section p {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.cta-section .button {
    margin-top: 8px;
}

.site-footer {
    align-items: start;
    background: #ffffff;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(260px, 1fr) auto;
    justify-content: space-between;
    padding: 34px clamp(18px, 4vw, 56px);
}

.site-footer p {
    color: var(--muted);
    margin: 12px 0 0;
    max-width: 650px;
}

.footer-brand {
    font-size: 18px;
}

.footer-links {
    align-content: start;
    justify-content: flex-end;
    max-width: 560px;
    text-align: right;
}

.footer-link-button {
    background: transparent;
    border: 0;
    color: var(--brand-dark);
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0;
}

.cookie-banner {
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    bottom: 18px;
    box-shadow: 0 18px 44px rgba(23, 32, 51, 0.18);
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    left: 18px;
    max-width: 980px;
    padding: 18px;
    position: fixed;
    right: 18px;
    z-index: 50;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner strong {
    color: var(--brand-dark);
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

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

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-actions .button {
    cursor: pointer;
}

.content-page {
    margin: 0 auto;
    max-width: 860px;
}

.content-page.wide-page {
    max-width: 1180px;
}

.content-page > h1 {
    font-size: clamp(38px, 6vw, 74px);
    hyphens: auto;
    overflow-wrap: anywhere;
}

.lead {
    color: #344054;
    font-size: 20px;
}

.prose {
    color: #344054;
}

.prose li + li {
    margin-top: 8px;
}

.prose table {
    background: #ffffff;
    border: 1px solid var(--line);
    border-collapse: separate;
    border-radius: 8px;
    border-spacing: 0;
    box-shadow: 0 14px 28px rgba(23, 32, 51, 0.06);
    margin: 24px 0;
    overflow: hidden;
    width: 100%;
}

.prose th,
.prose td {
    border-bottom: 1px solid var(--line);
    overflow-wrap: anywhere;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
}

.prose th + th,
.prose td + td {
    border-left: 1px solid var(--line);
}

.prose thead th {
    background: #dff2f6;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    overflow-wrap: normal;
}

.prose tbody td:first-child {
    background: #f7fbfc;
    color: var(--brand-dark);
    font-weight: 900;
    overflow-wrap: normal;
    width: 32%;
}

.prose tbody tr:last-child td {
    border-bottom: 0;
}

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

    .site-nav {
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        display: none;
        left: 0;
        padding: 14px 18px 18px;
        position: absolute;
        right: 0;
        top: 72px;
    }

    .site-nav a {
        font-size: 15px;
        padding: 6px 0;
    }

    .site-nav.is-open {
        display: grid;
    }

    .split-intro,
    .module-band,
    .section-head,
    .showcase-grid,
    .manual-tile-grid,
    .manual-process-grid,
    .manual-media-grid,
    .manual-split,
    .security-grid,
    .audit-section,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-footer {
        display: grid;
    }

    .footer-links {
        justify-content: flex-start;
        max-width: none;
        text-align: left;
    }

    .certification-inline {
        grid-template-columns: 1fr;
    }

    .certification-inline .button {
        width: 100%;
    }

    .value-grid,
    .security-cards {
        grid-template-columns: 1fr;
    }

    .content-page > h1 {
        font-size: clamp(32px, 9vw, 46px);
        line-height: 1.04;
    }

    .proof-strip {
        grid-template-columns: 1fr;
        position: relative;
        left: auto;
        right: auto;
    }

    .hero-inner {
        padding-bottom: 54px;
    }
}

@media (max-width: 560px) {
    .site-header {
        min-height: 64px;
        padding: 12px 16px;
    }

    .site-nav {
        top: 64px;
    }

    h1 {
        font-size: 50px;
    }

    .product-hero-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-copy h1 {
        font-size: clamp(40px, 13vw, 52px);
        line-height: 1.02;
    }

    .hero-copy .hero-intro {
        font-size: 19px;
    }

    .hero {
        min-height: auto;
    }

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

    .prose table:not(.feature-table) {
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .prose table:not(.feature-table) thead {
        display: none;
    }

    .prose table:not(.feature-table) tbody,
    .prose table:not(.feature-table) tr,
    .prose table:not(.feature-table) td {
        display: block;
        width: 100%;
    }

    .prose table:not(.feature-table) tr {
        background: #ffffff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: 0 12px 24px rgba(23, 32, 51, 0.06);
        margin-bottom: 12px;
        overflow: hidden;
    }

    .prose table:not(.feature-table) td {
        border: 0;
        padding: 12px 14px;
    }

    .prose table:not(.feature-table) td + td {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .prose table:not(.feature-table) tbody td:first-child {
        background: #dff2f6;
        width: 100%;
    }
}

.product-hero {
    background-color: #ffffff;
    background-image: none !important;
    color: var(--ink);
    min-height: calc(100vh - 72px);
}

.product-hero .hero-shade {
    display: none;
}

.product-hero-inner {
    align-items: center;
    display: grid;
    gap: clamp(28px, 5vw, 68px);
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
    margin: 0 auto;
    max-width: 1320px;
    min-height: calc(100vh - 72px);
    padding: clamp(52px, 8vw, 92px) clamp(28px, 5vw, 72px) 136px;
}

.hero-copy h1 {
    font-size: clamp(54px, 6.2vw, 88px);
    line-height: 0.96;
    margin-bottom: 18px;
    overflow-wrap: normal;
    word-break: normal;
}

.hero-copy .hero-intro {
    color: #344054;
    font-size: clamp(18px, 2vw, 24px);
    overflow-wrap: normal;
    word-break: normal;
}

.product-hero .hero-checks li {
    color: #344054;
}

.hero-checks,
.check-list {
    display: grid;
    gap: 9px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.hero-checks li,
.check-list li {
    color: inherit;
    font-weight: 800;
    padding-left: 24px;
    position: relative;
}

.hero-checks li::before,
.check-list li::before {
    color: var(--brand-dark);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
}

.hero-product-frame,
.screenshot-card,
.video-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 22px 58px rgba(23, 32, 51, 0.14);
    color: var(--ink);
    margin: 0;
    overflow: hidden;
}

.hero-product-frame img,
.screenshot-card img,
.video-card video {
    display: block;
    height: auto;
    width: 100%;
}

.hero-product-frame {
    justify-self: end;
    max-width: 760px;
    width: 100%;
}

.hero-product-frame img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: top center;
}

.hero-product-frame figcaption,
.screenshot-card figcaption,
.video-card figcaption {
    background: #f7fbfc;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    padding: 11px 14px;
}

.media-feature {
    align-items: center;
    display: grid;
    gap: 38px;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.media-copy p {
    color: #344054;
    font-size: 18px;
}

.media-stack {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 0.72fr;
}

.media-stack .large {
    grid-row: span 2;
}

.solutions-section {
    background: #ffffff;
    max-width: none;
}

.solutions-section > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

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

.solution-card {
    background: #f7fbfc;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    padding: 20px;
}

.solution-icon {
    align-items: center;
    background: var(--brand-action);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-size: 28px;
    font-weight: 900;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.solution-card p,
.solution-card li,
.module-detail-copy p,
.module-detail-copy li,
.maintenance-flow p {
    color: #52616d;
}

.solution-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 18px;
}

.solution-card a {
    align-self: end;
    border-top: 1px solid var(--line);
    padding-top: 12px;
}

.module-detail {
    align-items: center;
    display: grid;
    gap: 38px;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.module-detail-flipped .module-detail-copy {
    order: 2;
}

.module-detail-columns {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.module-screenshot {
    box-shadow: 0 18px 48px rgba(23, 32, 51, 0.1);
}

.maintenance-section {
    background: #f7fbfc;
    max-width: none;
}

.maintenance-section > * {
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
}

.maintenance-flow {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.maintenance-flow article {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 178px;
    padding: 18px;
    position: relative;
}

.maintenance-flow article + article::before {
    color: var(--brand-dark);
    content: "→";
    font-size: 24px;
    font-weight: 900;
    left: -16px;
    position: absolute;
    top: 44px;
}

.maintenance-flow span {
    align-items: center;
    background: var(--brand-action);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    margin-bottom: 14px;
    width: 34px;
}

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

.video-section {
    align-items: center;
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.manual-teaser p {
    color: #344054;
    font-size: 18px;
}

.manual-button {
    margin-top: 12px;
}

.video-card video {
    aspect-ratio: 16 / 9;
    background: #172033;
    object-fit: cover;
}

.page-main .content-page h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin-top: 34px;
}

.feature-page-media {
    background: #f7fbfc;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 28px 0;
    max-width: 100%;
    overflow: hidden;
}

.feature-page-media img {
    display: block;
    height: auto;
    max-width: 100%;
    width: 100%;
}

.feature-page-media figcaption {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    padding: 10px 12px;
}

.knowledge-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.knowledge-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    padding: 20px;
}

.knowledge-card h2 {
    font-size: 24px;
    line-height: 1.15;
    margin: 0;
}

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

.knowledge-card a {
    align-self: end;
    margin-top: 6px;
}

.feature-table {
    border-collapse: collapse;
    margin: 22px 0;
    table-layout: fixed;
    width: 100%;
}

.feature-table th,
.feature-table td {
    border: 1px solid var(--line);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

.feature-table th {
    background: #dff2f6;
    color: var(--brand-dark);
}

.prose .feature-table th,
.prose .feature-table td,
.prose .feature-table tbody td:first-child {
    overflow-wrap: anywhere;
}

.manual-hero {
    background:
        linear-gradient(120deg, rgba(7, 80, 97, 0.95), rgba(23, 32, 51, 0.84)),
        #172033;
    border-radius: 8px;
    color: #ffffff;
    margin: 0 0 24px;
    padding: clamp(34px, 5vw, 58px);
}

.manual-hero .eyebrow {
    color: #80e4ef;
}

.manual-hero h2 {
    color: #ffffff;
    max-width: 920px;
}

.manual-hero p:not(.eyebrow) {
    color: #d8f8fc;
    font-size: 18px;
    max-width: 980px;
}

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

.api-hero-actions .button {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.certification-note {
    background: #fff7e6;
    border: 1px solid #f2d18c;
    border-radius: 8px;
    color: #6c4a00;
    padding: 18px;
}

.certification-note h2 {
    color: #6c4a00;
}

.certification-cta,
.certification-inline {
    background: #dff2f6;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.certification-cta {
    padding: clamp(22px, 4vw, 34px);
}

.certification-cta p {
    color: #344054;
    max-width: 820px;
}

.certification-inline {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 24px 0;
    padding: 18px;
}

.certification-inline strong {
    color: var(--brand-dark);
    display: block;
    font-size: 18px;
}

.certification-inline p {
    color: #344054;
    margin: 4px 0 0;
}

.manual-anchor-nav {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 28px;
    padding: 12px;
}

.manual-anchor-nav a {
    background: #eef6f8;
    border: 1px solid #d7e5ea;
    border-radius: 8px;
    color: var(--brand-dark);
    font-size: 14px;
    padding: 9px 11px;
}

.manual-section {
    margin-top: 34px;
    scroll-margin-top: 112px;
}

.manual-section > h2,
.manual-section > .eyebrow {
    max-width: 980px;
}

.manual-tile-grid,
.manual-process-grid,
.manual-media-grid {
    display: grid;
    gap: 14px;
}

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

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

.manual-tile-grid article,
.manual-process-grid article {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    min-width: 0;
    padding: 18px;
}

.manual-tile-grid h3,
.manual-process-grid h3,
.manual-tile-grid p,
.manual-process-grid p {
    overflow-wrap: break-word;
    word-break: normal;
}

.manual-tile-grid p,
.manual-process-grid p {
    color: #52616d;
    margin-bottom: 0;
}

.manual-split {
    align-items: center;
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.manual-steps {
    counter-reset: manual-step;
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.manual-steps li {
    background: #f7fbfc;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #475467;
    font-weight: 700;
    padding: 12px 14px 12px 46px;
    position: relative;
}

.manual-steps li::before {
    align-items: center;
    background: var(--brand-action);
    border-radius: 7px;
    color: #ffffff;
    content: counter(manual-step);
    counter-increment: manual-step;
    display: inline-flex;
    font-weight: 900;
    height: 24px;
    justify-content: center;
    left: 12px;
    position: absolute;
    top: 12px;
    width: 24px;
}

@media (min-width: 901px) and (max-width: 1100px) {
    .site-header {
        gap: 14px;
    }

    .site-nav a {
        font-size: 11.5px;
    }

    .product-hero-inner,
    .media-feature,
    .module-detail,
    .video-section {
        grid-template-columns: 1fr;
    }

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

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

    .maintenance-flow article + article::before {
        display: none;
    }
}

@media (max-width: 900px) {
    .media-feature {
        grid-template-columns: minmax(0, 1fr);
    }

    .media-stack .large {
        grid-row: auto;
    }

    .certification-inline {
        align-items: stretch;
        grid-template-columns: minmax(0, 1fr);
    }

    .certification-inline > div,
    .certification-inline p,
    .certification-inline strong {
        min-width: 0;
        overflow-wrap: break-word;
    }

    .certification-inline .button {
        width: 100%;
    }

    .manual-tile-grid,
    .manual-process-grid,
    .manual-media-grid,
    .manual-split {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .product-hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-bottom: 58px;
    }

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

    .hero-copy h1 {
        font-size: 36px;
        line-height: 1.05;
        hyphens: auto;
        overflow-wrap: break-word;
    }

    .hero-copy .hero-intro {
        hyphens: auto;
        overflow-wrap: break-word;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-actions,
    .cookie-actions .button {
        width: 100%;
    }

    .hero-product-frame {
        display: none;
    }

    .media-stack,
    .solution-grid,
    .module-detail-columns,
    .maintenance-flow,
    .maintenance-proof,
    .video-grid,
    .knowledge-grid {
        grid-template-columns: 1fr;
    }

    .module-detail-flipped .module-detail-copy {
        order: 0;
    }
}

.demo-layout {
    align-items: start;
    display: grid;
    gap: clamp(24px, 4vw, 42px);
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
}

.demo-copy > p {
    color: #344054;
    font-size: 19px;
}

.demo-steps {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

.demo-steps article {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 14px;
    grid-template-columns: 42px 1fr;
    padding: 18px;
}

.demo-steps span {
    align-items: center;
    background: var(--brand-action);
    border-radius: 8px;
    color: #ffffff;
    display: inline-flex;
    font-weight: 900;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.demo-steps h2,
.demo-contact-panel h2,
.demo-form h2 {
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.1;
    margin-bottom: 8px;
}

.demo-steps p,
.demo-contact-panel p,
.demo-form p {
    color: var(--muted);
    margin-bottom: 0;
}

.demo-contact-panel {
    background: #dff2f6;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.demo-form {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 36px rgba(23, 32, 51, 0.1);
    display: grid;
    gap: 15px;
    padding: clamp(20px, 3vw, 28px);
}

.demo-form label,
.demo-form fieldset {
    display: grid;
    gap: 7px;
}

.demo-form label span,
.demo-form legend {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 900;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    background: #ffffff;
    border: 1px solid #cbdce2;
    border-radius: 8px;
    color: var(--ink);
    font: inherit;
    padding: 12px 13px;
    width: 100%;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(21, 162, 184, 0.16);
    outline: 0;
}

.demo-form fieldset {
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 0;
    padding: 14px;
}

.demo-checkbox-grid {
    display: grid;
    gap: 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-checkbox-grid label {
    align-items: center;
    color: #344054;
    display: flex;
    font-weight: 700;
    gap: 8px;
}

.demo-checkbox-grid input {
    flex: 0 0 auto;
    width: auto;
}

.demo-form .button {
    border: 0;
    cursor: pointer;
    margin-top: 4px;
    width: max-content;
}

.demo-form-status {
    background: #eef6f8;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--brand-dark) !important;
    font-weight: 800;
    padding: 11px 13px;
}

@media (max-width: 900px) {
    .demo-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .demo-steps article,
    .demo-checkbox-grid {
        grid-template-columns: 1fr;
    }

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