* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    overflow-x: hidden;
}

:root {
    --top-header-height: 54px;
    --brand-dark: #0f172a;
    --brand-dark-2: #111c32;
    --brand-border: rgba(255, 255, 255, 0.08);
    --surface: #ffffff;
    --surface-alt: #f6f8fc;
    --surface-muted: #eef2f8;
    --surface-soft: #f8fbff;
    --text: #1f2937;
    --muted: #5f6f85;
    --heading: #0f172a;
    --primary: #0d6efd;
    --line: #d7e2ef;
    --shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
    --shadow-soft: 0 8px 20px rgba(15, 23, 42, 0.04);
    --radius-lg: 24px;
    --radius-md: 18px;
    --content-width: 1180px;
    --section-space: 32px;
    --reveal-distance: 22px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, Arial, Helvetica, sans-serif;
    background: #fbfcfe;
    color: var(--text);
    min-width: 340px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: var(--top-header-height);
}

.site-shell {
    min-height: calc(100vh - var(--top-header-height));
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    margin-top: auto;
    width: 100%;
    padding: 0;
    text-align: left;
    line-height: 1.5em;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

.top-header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    padding: 0 14px 0 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    min-height: 54px;
    z-index: 1000;
}

.top-header-bg {
    background-color: #0f172a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    min-height: 54px;
    z-index: 0;
}

.header-inner,
.hero-inner,
.section-inner,
.section-inner-plain {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
}

.section-inner {
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.section-inner-plain {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.section-bleed {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.header-branding {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: 0;
    flex: 1 1 auto;
}

.topbarlogo {
    margin: auto 0;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    text-decoration: none;
    color: #f8f9fa;
    margin-top: 2px;
    margin-left: -4px;
    margin-bottom: -4px;
}

.brand-link:hover {
    color: #d4dbe2;
    text-decoration: none;
}

.brand-link img {
    height: 46px;
    width: auto;
    margin-right: 0;
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.header-right {
    margin-left: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 8px;
}

.nav-group {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: -14px;
}

.nav-trigger,
.nav-link-main {
    border: 0;
    background: transparent;
    color: #f8f9fa;
    cursor: pointer;
    padding: 12px 6px 10px;
    min-height: 38px;
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-link-main:hover,
.nav-link-main:focus-visible,
.nav-link-main-active,
.nav-group-active .nav-trigger,
.nav-group[data-open="true"] .nav-trigger {
    background: transparent;
    color: #fff;
    border-bottom-color: #78a8e8;
    outline: none;
}

.nav-trigger:focus-visible,
.nav-link-main:focus-visible,
.nav-dropdown-link:focus-visible,
.footer-group a:focus-visible,
.footer-bottom-links a:focus-visible {
    outline: 2px solid rgba(120, 168, 232, 0.45);
    outline-offset: 4px;
}

.nav-chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 220px;
    background: rgba(12, 20, 35, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 22px 38px rgba(0, 0, 0, 0.24);
    padding: 8px;
    display: none;
    z-index: 1002;
}

.nav-group:hover .nav-dropdown,
.nav-group[data-open="true"] .nav-dropdown {
    display: grid;
    gap: 2px;
}

.nav-dropdown-link {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgba(248, 249, 250, 0.92);
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}

.nav-dropdown-link:hover,
.nav-dropdown-link:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transform: translateX(2px);
}

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

.btn {
    min-height: 44px;
    border-radius: 999px;
    font-size: 0.95rem;
    padding: 10px 18px;
    font-weight: 700;
    line-height: 1;
    align-content: center;
    overflow: hidden;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn-orange {
    color: #fff;
    background-color: #FF6B35;
}
.btn-orange:hover, .btn-orange:active, .btn-orange:focus-visible {
    color: #fff !important;
    background-color: #FF8555 !important;
    box-shadow: 0 10px 22px rgba(255, 107, 53, 0.22) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #0f172a 0%, #1b335f 100%);
    color: #fff;
    border-color: #0f172a;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus-visible {
    background: linear-gradient(135deg, #13213a 0%, #21427a 100%) !important;
    color: #fff !important;
    border-color: #13213a !important;
    Xtransform: translateY(-1px) !important;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.7);
    color: #244465;
    border-color: #b6cae2;
    box-shadow: none;
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:hover:active, .btn-secondary:focus-visible {
    background: #fff;
    color: #16324f;
    border-color: #8ea8c5;
    transform: translateY(-1px);
}

.btn-secondary:hover:active{
    background-color: #edf3fa;
}

.btn-arrow-glyph,
.text-link-arrow {
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.18s ease;
}

.btn-arrow:hover .btn-arrow-glyph,
.btn-arrow:focus-visible .btn-arrow-glyph,
.text-link:hover .text-link-arrow,
.text-link:focus-visible .text-link-arrow {
    transform: translateX(4px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
    color: #0a58ca;
    text-decoration: none;
    outline: none;
}


.menu-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    border-radius: 4px;
    padding: 6px;
    margin-right: 8px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #f8f9fa;
    margin: 5px 0;
    border-radius: 999px;
}

.hero {
    position: relative;
    padding: 0 0 56px;
    overflow: clip;
    Xbackground: linear-gradient(180deg, #eef4fb 0%, #f8fbfe 100%);
    
    background: linear-gradient(180deg, #09111d 0%, #0f1d33 100%);
    padding-bottom: 100px;
    
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 78%;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.16) 0%, rgba(96, 165, 250, 0) 42%),
        linear-gradient(180deg, #f7fbff 0%, rgba(247, 251, 255, 0) 100%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 92px;
    background: #fbfcfe;
    clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-inner,
.split-layout {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 42px;
    align-items: center;
}

.hero-inner-single {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 70px 0 92px;
    box-shadow: none;
    backdrop-filter: none;
}

.journey-step:hover, .feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hero-inner-dark {
    background: linear-gradient(135deg, #0f172a 0%, #13213a 100%);
    color: #f8fbff;
    border-color: rgba(255, 255, 255, 0.08);
}

.hero-inner-dark .hero-copy h1,
.hero-inner-dark .hero-text,
.hero-inner-dark .hero-eyebrow {
    color: #f8fbff;
}

.hero-inner-dark .hero-text {
    Xcolor: rgba(248, 251, 255, 0.82);
    color: rgba(234, 241, 250, 0.86);
}

.hero-inner-dark .hero-eyebrow {
    color: #93c5fd;
}

.hero-inner-dark .btn-secondary,
.hero-inner-dark .btn-secondary:hover,
.hero-inner-dark .btn-secondary:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.hero-inner-dark .hero-media img {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-copy h1,
.section-block h2 {
    margin: 0;
    color: var(--heading);
    line-height: 1.08;
}

.hero-copy h1 {
    font-size: clamp(2.5rem, 4.9vw, 4.5rem);
    letter-spacing: -0.03em;
    Xcolor: #f8fbff;
}

.section-block h2 {
    font-size: clamp(1.8rem, 2vw, 2.6rem);
    letter-spacing: -0.02em;
}

.hero-eyebrow,
.section-eyebrow,
.pricing-label {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-text,
.section-copy p,
.prose-block p,
.pricing-summary,
.faq-item p,
.main-footer p,
.contact-points p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 1rem;
}

.hero-text {
    margin-top: 18px;
    max-width: 40rem;
    font-size: 1.08rem;
    color: rgba(234, 241, 250, 0.86);
}

.hero-tertiary-link {
    margin-top: 14px;
}

.hero-microcopy {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-notice {
    margin-top: 22px;
    padding: 20px 20px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffb01f 0%, #ff8f1f 48%, #ff6b1a 100%);
    border: 0;
    box-shadow: 0 16px 34px rgba(255, 120, 24, 0.22);
    color: #fff7ed;
}

.hero-notice-eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.74rem;
    font-weight: 900;
    color: #fff3d5;
}

.hero-notice h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.15;
}

.hero-notice p {
    margin: 0;
    color: rgba(255, 250, 245, 0.96);
    line-height: 1.55;
}

.hero-notice-meta {
    margin-top: 10px !important;
    font-weight: 700;
    color: #fff7e8 !important;
}

.hero-media img,
.section-media img {
    border-radius: 20px;
    border: 1px solid rgba(215, 226, 239, 0.92);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
    margin-left: auto;
    margin-right: auto;
}

.hero-media img {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.hero-process-visual {
    border: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.hero-process-eyebrow {
    margin: 0 0 14px;
    color: #475569;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-process-grid {
    display: grid;
    gap: 14px;
}

.hero-process-step {
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    padding: 16px 18px;
}

.hero-process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    margin-bottom: 10px;
    background: #e8f0ff;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.hero-process-step strong {
    display: block;
    margin-bottom: 8px;
    color: var(--heading);
}

.hero-process-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
    margin-top: 26px;
}

.flash-wrap {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
}

.flash {
    border-radius: 12px;
    padding: 14px 16px;
    font-weight: 600;
    margin-top: 8px;
}

.flash-success {
    background: #d1e7dd;
    color: #0f5132;
}

.flash-error {
    background: #f8d7da;
    color: #842029;
}

.section-block {
    padding: var(--section-space) 0;
}

.split-layout-reverse .section-copy {
    order: 2;
}

.split-layout-reverse .section-media {
    order: 1;
}

.section-block-alt .section-inner,
.cta-panel,
.contact-form-panel,
.feature-card,
.pricing-card,
.faq-item,
.prose-block,

.legacy-html-block {
    background: transparent;
    border: 0;
    box-shadow: none;
}

.section-inner h2,
.section-inner-plain h2 {
    margin-bottom: 8px;
}

.section-block-alt .section-inner,
.cta-panel,
.prose-block,
.legacy-html-block {
    border-radius: 0;
    padding: 0;
}

.section-block-alt .section-inner,
.cta-panel,
.prose-block {
    padding: 34px;
}

.cta-panel {
    position: relative;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 54px 0;
    text-align: left;
}

.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0 50% 0 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(180deg, #eef5fb 0%, #f7fafd 100%);
    z-index: -1;
}

.card-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

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

.feature-card,
.pricing-card {
    display: block;
    border-radius: 24px;
    padding: 26px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfe 100%);
    box-shadow: var(--shadow-soft);
}

.feature-card-has-media {
    overflow: hidden;
    padding: 0;
}

.feature-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #e7effa 0%, #f6f9fe 100%);
}

.feature-card-media-expandable {
    cursor: zoom-in;
}

.feature-card-media-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    position: relative;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-card-media-trigger::after {
    content: 'Open larger view';
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(9, 17, 29, 0.82);
    color: #f8fbff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

#blog-archive-results .feature-card-media {
    background: #fff;
}

#blog-archive-results .feature-card {
    background: #fff;
}

#blog-archive-results .feature-card.feature-card-has-media {
    border-radius: 18px;
    overflow: hidden;
}

#blog-archive-results .section-inner {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

#blog-archive-results .feature-card-media img {
    border-radius: 18px;
    margin: 0;
    box-shadow: none;
}

.feature-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}

.feature-card-content {
    padding: 22px;
}

.feature-card-charm .feature-card-media {
    width: 58px;
    min-width: 58px;
    height: 58px;
    aspect-ratio: auto;
    display: grid;
    place-items: center;
    padding: 7px;
    border-radius: 16px;
    background: radial-gradient(circle at top left, #f8fbff 0%, #eef5ff 52%, #f8fbff 100%);
    border: 1px solid #e0ebf7;
}

.feature-card-charm .feature-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card-charm.feature-card-has-media {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 22px;
}

.feature-card-charm .feature-card-content {
    padding: 0;
}

.feature-card-compact .feature-card-content {
    padding-top: 0;
}

.feature-card-trust {
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
}

.card-kicker {
    margin: 0 0 10px;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-card-link {
    color: var(--heading);
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.feature-card-link:hover,
.feature-card-link:focus-visible {
    transform: translateY(-1px);
    border-color: #bfd0e5;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
    outline: none;
    text-decoration: none;
}

.feature-card-link:hover .feature-card-media img,
.feature-card-link:focus-visible .feature-card-media img {
    transform: scale(1.06);
}

.feature-card-media-trigger:hover,
.feature-card-media-trigger:focus-visible {
    outline: none;
}

.feature-card-media-trigger:hover::after,
.feature-card-media-trigger:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.feature-card-media-trigger:hover img,
.feature-card-media-trigger:focus-visible img {
    transform: scale(1.03);
    filter: drop-shadow(0 14px 28px rgba(66, 118, 188, 0.16));
}

.feature-card-media-trigger:focus-visible {
    box-shadow: inset 0 0 0 3px rgba(120, 168, 232, 0.36);
}

.feature-card:hover .feature-card-media img,
.feature-card:focus-within .feature-card-media img {
    filter: drop-shadow(0 14px 28px rgba(66, 118, 188, 0.16));
}

.image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.image-lightbox[hidden] {
    display: none;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 24, 0.84);
    cursor: pointer;
}

.image-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1600px);
    max-height: 92vh;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.image-lightbox-dialog img {
    width: auto;
    max-width: 100%;
    max-height: 92vh;
    display: block;
    margin-inline: auto;
    justify-self: center;
    align-self: center;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .image-lightbox {
        padding: 14px;
    }

    .image-lightbox-dialog {
        width: min(100%, 1600px);
    }
}

.feature-card h3,
.pricing-card h3 {
    margin: 0 0 10px;
    color: var(--heading);
}

.button-row-compact {
    margin-top: 14px;
}

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

.card-title-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    min-height: 68px;
}

.card-title-row h3 {
    margin: 0;
    flex: 1 1 auto;
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: #1c2331;
    border-radius: 10px;
    color: #fff;
    font-size: 20px;
}

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

.pillar-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border: 1px solid #d9e3f0;
    border-radius: 22px;
    padding: 26px 22px 22px;
    box-shadow: var(--shadow);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0d6efd 0%, #60a5fa 100%);
}

.pillar-kicker {
    margin: 0 0 10px;
    color: var(--primary);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pillar-card h3 {
    margin: 0 0 10px;
    color: var(--heading);
}

.pillar-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.simple-points-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.simple-point {
    padding-top: 16px;
    border-top: 2px solid #d9e3f0;
}

.simple-point h3 {
    margin: 0 0 10px;
    color: var(--heading);
    font-size: 1.05rem;
}

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

.section-screenshot-showcase .feature-card {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.section-screenshot-showcase .feature-card-content {
    padding: 22px 22px 24px;
}

.section-screenshot-showcase .feature-card-media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, #eef4fd 0%, #f7fbff 100%);
    padding: 12px;
}

.section-screenshot-showcase .feature-card-media img {
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
    
    cursor: zoom-in;
    
}

.section-screenshot-showcase .feature-card h3 {
    font-size: 1.15rem;
}

.section-screenshot-showcase .card-grid {
    gap: 22px;
}

.story-band {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 26px;
    align-items: stretch;
    background: linear-gradient(135deg, #0f172a 0%, #13213a 100%);
    color: #f8fbff;
    border-radius: 28px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.section-block-highlight .section-inner {
    Xborder-color: #ff9a38;
}

.story-band-highlight {
    background: linear-gradient(135deg, #f7fbff 0%, #edf4fd 58%, #e6eef9 100%);
    border: 1px solid #cddced;
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.08);
    color: var(--heading);
}

.story-band-highlight .section-eyebrow,
.story-band-highlight h2,
.story-band-highlight p {
    color: inherit;
}

.story-band-highlight .section-eyebrow {
    color: #1d4ed8;
}

.story-band-highlight .story-copy p {
    color: var(--muted);
}

.story-band-highlight .story-metric {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid #d7e2ef;
    box-shadow: none;
}

.story-band-highlight .story-metric strong {
    color: var(--heading);
}

.story-band-highlight .story-metric span {
    color: var(--muted);
}

.story-band .section-eyebrow,
.story-band h2,
.story-band p {
    color: inherit;
}

.story-band .section-eyebrow {
    color: #7dd3fc;
}

.story-band .story-copy p {
    Xcolor: rgba(248, 251, 255, 0.82);
}

.story-aside {
    display: grid;
    gap: 14px;
}

.story-metric {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 18px;
}

.story-metric strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.story-metric span {
    display: block;
    color: rgba(248, 251, 255, 0.75);
    line-height: 1.55;
}

.quote-panel {
    background: linear-gradient(135deg, #ffffff 0%, #eef5ff 100%);
    border: 1px solid #d9e3f0;
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.quote-panel blockquote {
    margin: 0;
    margin-top: 12px;
    color: var(--heading);
    /*font-size: clamp(1.4rem, 2.8vw, 2.1rem);
    line-height: 1.35;
    letter-spacing: -0.02em;*/
    font-weight: 700;
}

.quote-attribution {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 600;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 10px;
}

.feature-bullets li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    line-height: 1.65;
}

.feature-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd 0%, #60a5fa 100%);
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.10);
}

.feature-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.feature-stat {
    background: #fff;
    border: 1px solid #d9e3f0;
    border-radius: 16px;
    padding: 16px 14px;
}

.feature-stat strong {
    display: block;
    color: var(--heading);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.feature-stat span {
    display: block;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.card-meta {
    margin: 0 0 8px;
    color: var(--heading);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.config-snippet {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    background: #0f172a;
    color: #e2e8f0;
    font-size: 0.88rem;
    line-height: 1.55;
    overflow-x: auto;
    white-space: pre;
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.feature-card p strong,
.legacy-html-block p strong {
    color: var(--heading);
}

.pricing-price {
    margin: 0 0 10px;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--heading);
}

.comparison-intro {
    margin-top: 10px;
    margin-bottom: 18px;
}

.section-polish-band .section-inner,
.section-overview-teaser .section-inner,
.section-final-cta .cta-panel {
    background: linear-gradient(135deg, #ffffff 0%, #f5f9ff 100%);
}

.section-polish-contrast .section-inner {
    background: linear-gradient(135deg, #f9fbfe 0%, #eef4fb 100%);
}

.section-trust-strip .section-inner {
    background: linear-gradient(135deg, #0f172a 0%, #13213a 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.section-trust-strip .section-eyebrow,
.section-trust-strip h2,
.section-trust-strip .feature-card h3,
.section-trust-strip .feature-card p {
    color: #f8fbff;
}

.section-trust-strip .feature-card {
    border-color: rgba(154, 177, 208, 0.22);
    background: rgba(255, 255, 255, 0.05);
}

.section-trust-strip .feature-card-media {
    background: rgba(255, 255, 255, 0.06);
}

.section-trust-strip .feature-card:hover,
.section-trust-strip .feature-card:focus-within {
    border-color: rgba(177, 206, 239, 0.5);
}

.comparison-table {
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
}

.comparison-head,
.comparison-row {
    display: grid;
    grid-template-columns: minmax(240px, 2fr) repeat(3, minmax(150px, 1fr));
}

.comparison-row:nth-child(even) {
    background: #f8fbff;
}

.comparison-cell {
    padding: 18px 18px;
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
}

.comparison-head .comparison-cell {
    background: linear-gradient(180deg, #f6faff 0%, #edf4fd 100%);
}

.comparison-head .comparison-cell:last-child,
.comparison-row .comparison-cell:last-child {
    border-right: none;
}

.comparison-row:last-child .comparison-cell {
    border-bottom: none;
}

.comparison-cell-plan strong,
.comparison-cell-feature strong {
    display: block;
    color: var(--heading);
}

.comparison-cell-plan span {
    display: block;
    color: var(--muted);
    margin-top: 4px;
    font-size: 0.88rem;
}

.comparison-cell-value {
    text-align: left;
}

.comparison-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 74px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef3fb;
    color: var(--heading);
    font-weight: 700;
}

.comparison-value-text {
    display: block;
    color: var(--text);
    line-height: 1.65;
}

.comparison-pill-yes {
    background: #dff3e4;
    color: #166534;
}

.comparison-pill-no {
    background: #eef2f7;
    color: #64748b;
}

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

.journey-step {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e3f0;
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.journey-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6efd 0%, #60a5fa 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.journey-step-copy h3 {
    margin: 0 0 10px;
    color: var(--heading);
}

.journey-step-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.journey-step-meta {
    margin-top: 12px !important;
    color: var(--primary) !important;
    font-size: 0.88rem;
    font-weight: 700;
}

.pricing-card ul {
    margin: 0 0 20px;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.7;
}

.pricing-grid {
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #d9e3f0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #cbd5e1 0%, #94a3b8 100%);
}

.pricing-grid .pricing-card:nth-child(1)::before {
    background: linear-gradient(90deg, #94a3b8 0%, #64748b 100%);
}

.pricing-grid .pricing-card:nth-child(2) {
    border-color: #bfd7ff;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.pricing-grid .pricing-card:nth-child(2)::before {
    background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.pricing-grid .pricing-card:nth-child(3) {
    border-color: #c7d2fe;
    background: linear-gradient(180deg, #fbfdff 0%, #f5f7ff 100%);
}

.pricing-grid .pricing-card:nth-child(3)::before {
    background: linear-gradient(90deg, #4338ca 0%, #818cf8 100%);
}

.pricing-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef4fd;
    color: #1d4ed8;
}

.pricing-grid .pricing-card:nth-child(1) .pricing-label {
    background: #eef2f7;
    color: #475569;
}

.pricing-grid .pricing-card:nth-child(3) .pricing-label {
    background: #eef2ff;
    color: #4338ca;
}

.pricing-summary {
    margin-bottom: 16px;
}

.pricing-card .btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.product-ui,
.model-card,
.report-preview,
.trust-visual,
.policy-snippet,
.zone-map,
.checklist-visual,
.compliance-card {
    border: 1px solid #d9e3f0;
    box-shadow: var(--shadow);
}

.product-ui {
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    border-radius: 26px;
    padding: 24px;
}

.product-ui-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.product-ui-kicker {
    margin: 0 0 8px;
    color: #475569;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-ui-head h3,
.dashboard-findings h4,
.workflow-stage strong,
.model-card h3,
.report-preview h3,
.compliance-card h3 {
    margin: 0;
    color: var(--heading);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.status-pill-alert {
    background: #fee2e2;
    color: #b91c1c;
}

.dashboard-grid,
.dashboard-findings,
.mini-metrics,
.model-compare,
.report-previews,
.compliance-map {
    display: grid;
    gap: 16px;
}

.dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 16px;
}

.dashboard-panel,
.mini-metric,
.finding-card,
.workflow-stage,
.model-card,
.report-preview,
.preview-stat,
.compliance-card {
    border-radius: 18px;
}

.dashboard-panel {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 18px;
}

.panel-label {
    margin: 0 0 12px;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.severity-stack {
    display: grid;
    gap: 10px;
}

.severity-row {
    display: grid;
    grid-template-columns: 14px 1fr auto;
    gap: 10px;
    align-items: center;
    color: var(--heading);
}

.severity-row span:last-child,
.mini-metric span,
.finding-card p,
.workflow-stage p,
.model-card p,
.report-preview p,
.preview-stat span,
.compliance-card p {
    color: var(--muted);
}

.severity-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.severity-critical {
    background: #dc2626;
}

.severity-high {
    background: #f97316;
}

.severity-medium {
    background: #f59e0b;
}

.severity-low {
    background: #22c55e;
}

.severity-info {
    background: #38bdf8;
}

.mini-metrics {
    grid-template-columns: 1fr;
}

.mini-metric {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    padding: 14px 16px;
}

.mini-metric strong,
.preview-stat strong {
    display: block;
    color: var(--heading);
    margin-bottom: 6px;
}

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

.finding-card {
    padding: 18px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.finding-meta {
    display: grid;
    grid-template-columns: minmax(84px, auto) minmax(0, 1fr);
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

.finding-meta strong {
    color: var(--heading);
}

.finding-meta span {
    color: var(--muted);
}

.finding-card-critical {
    border-color: #fecaca;
    background: linear-gradient(180deg, #ffffff 0%, #fff5f5 100%);
}

.finding-card-high {
    border-color: #fed7aa;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.finding-card-medium {
    border-color: #fde68a;
    background: linear-gradient(180deg, #ffffff 0%, #fffbeb 100%);
}

.finding-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #334155;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.finding-card-critical .finding-badge {
    background: #fee2e2;
    color: #b91c1c;
}

.finding-card-high .finding-badge {
    background: #ffedd5;
    color: #c2410c;
}

.finding-card-medium .finding-badge {
    background: #fef3c7;
    color: #b45309;
}

.workflow-strip {
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.workflow-stage {
    flex: 1 1 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #d9e3f0;
    padding: 18px;
}

.workflow-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    margin-bottom: 14px;
    background: #e8f0ff;
    color: #1d4ed8;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.workflow-stage strong {
    display: block;
    margin-bottom: 8px;
}

.workflow-stage p,
.model-card p,
.report-preview p,
.compliance-card p {
    margin: 0;
    line-height: 1.65;
}

.workflow-arrow {
    position: relative;
    flex: 0 0 18px;
    align-self: center;
    height: 18px;
}

.workflow-arrow::before {
    content: '';
    position: absolute;
    inset: 50% 0 auto;
    height: 2px;
    transform: translateY(-50%);
    background: #cbd5e1;
}

.workflow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #94a3b8;
    border-right: 2px solid #94a3b8;
    transform: translateY(-50%) rotate(45deg);
}

.workflow-strip-trust .workflow-stage {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

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

.trust-strip-item {
    border-radius: 16px;
    border: 1px solid #d9e3f0;
    background: #fff;
    padding: 16px 18px;
    box-shadow: var(--shadow);
}

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

.trust-strip-item strong {
    color: var(--heading);
    margin-bottom: 6px;
}

.trust-strip-item span {
    color: var(--muted);
}

.product-ui-context .dashboard-panel p {
    margin: 0 0 8px;
}

.product-ui-context .dashboard-panel p:last-child {
    margin-bottom: 0;
}

.model-compare,
.report-previews,
.compliance-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.model-card,
.report-preview,
.compliance-card {
    background: #fff;
    padding: 20px;
}

.model-kicker {
    margin: 0 0 8px;
    color: #1d4ed8;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.report-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.report-preview-head {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 12px;
}

.report-preview-body {
    background: #0f172a;
    border-radius: 18px;
    padding: 14px;
    display: grid;
    gap: 8px;
}

.report-preview-body-summary {
    background: linear-gradient(180deg, #0f172a 0%, #172554 100%);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.report-preview-body-outline {
    background: #f8fbff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 18px;
}

.report-section-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.report-section-list li {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.report-section-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.report-section-list strong {
    color: var(--heading);
}

.report-section-list span {
    color: var(--muted);
    line-height: 1.6;
}

.report-audience-intro {
    margin-bottom: 18px;
}

.report-audience-intro p {
    margin: 0;
}

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

.preview-toolbar,
.preview-row {
    display: grid;
    gap: 10px;
}

.preview-toolbar {
    grid-template-columns: minmax(88px, 0.7fr) minmax(0, 1.8fr) minmax(92px, 0.8fr);
    color: #cbd5e1;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.preview-row {
    grid-template-columns: minmax(88px, 0.7fr) minmax(0, 1.8fr) minmax(92px, 0.8fr);
    align-items: center;
    border-radius: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    font-size: 0.9rem;
}

.preview-row-critical {
    border: 1px solid rgba(248, 113, 113, 0.35);
}

.preview-row-high {
    border: 1px solid rgba(251, 146, 60, 0.35);
}

.preview-row-medium {
    border: 1px solid rgba(250, 204, 21, 0.35);
}

.preview-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(148, 163, 184, 0.22);
    padding: 14px;
}

.preview-stat strong {
    color: #e2e8f0;
}

.preview-stat span {
    display: block;
    color: #f8fafc;
}

.trust-visual {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 26px;
    padding: 20px;
}

.trust-matrix {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
}

.trust-matrix table {
    margin: 0;
}

.trust-matrix th,
.trust-matrix td {
    vertical-align: top;
}

.trust-matrix thead th {
    background: #f8fbff;
}

.policy-snippet {
    background: #0f172a;
    border-radius: 24px;
    padding: 16px;
}

.policy-snippet .preview-toolbar,
.policy-snippet .preview-row {
    grid-template-columns: minmax(110px, 0.9fr) repeat(4, minmax(0, 1fr));
}

.zone-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-radius: 24px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.zone-card {
    padding: 24px 18px;
    border-radius: 18px;
    border: 1px solid #d9e3f0;
    background: #fff;
    text-align: center;
    font-weight: 700;
    color: var(--heading);
}

.zone-card-risk {
    border-color: #fecaca;
    background: #fff5f5;
}

.zone-connector {
    min-width: 110px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.zone-connector-risk {
    color: #b91c1c;
}

.zone-connector-ok {
    color: #0f766e;
}

.checklist-visual {
    display: grid;
    gap: 12px;
    border-radius: 24px;
    padding: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.checklist-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background: #fff;
}

.checklist-row strong,
.checklist-row span {
    color: var(--heading);
}

.checklist-row-pass {
    border-color: #bbf7d0;
}

.checklist-row-pass span {
    color: #166534;
}

.checklist-row-warn {
    border-color: #fde68a;
}

.checklist-row-warn span {
    color: #b45309;
}

.checklist-row-fail {
    border-color: #fecaca;
}

.checklist-row-fail span {
    color: #b91c1c;
}

.faq-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.faq-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 20px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--heading);
    position: relative;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #eef4fd;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: '\2212';
}

.faq-item div {
    padding: 0 20px 20px;
}

.faq-item div p {
    margin: 0;
}

.contact-layout {
    align-items: start;
}

.contact-form-panel {
    border-radius: 22px;
    padding: 24px;
}

.main-contact-form {
    display: grid;
    gap: 14px;
}

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

.main-contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--heading);
}

.main-contact-form span {
    font-size: 0.92rem;
}

.main-contact-form input,
.main-contact-form textarea,
.main-search-form input {
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: #fff;
}

.main-contact-form input:focus,
.main-contact-form textarea:focus,
.main-search-form input:focus {
    outline: 2px solid rgba(13, 110, 253, 0.18);
    border-color: var(--primary);
}

.main-search-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.main-search-form label {
    flex: 1 1 320px;
}

.main-footer {
    margin-top: 0;
    background: linear-gradient(180deg, #0d1628 0%, #0a1321 100%);
    color: rgba(248, 251, 255, 0.86);
}

.footer-shell {
    width: min(var(--content-width), calc(100% - 32px));
    margin: 0 auto;
    padding: 44px 0 24px;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(0, 2.05fr);
    gap: 40px;
    align-items: start;
}

.footer-brand img {
    height: 42px;
    width: auto;
}

.footer-intro h2 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: 1.35rem;
}

.footer-intro p {
    margin: 0;
    color: rgba(225, 233, 245, 0.82);
    line-height: 1.7;
}

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

.footer-group h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-group a {
    display: block;
    margin-bottom: 10px;
    color: rgba(225, 233, 245, 0.82);
    font-size: 0.95rem;
}

.footer-group a:hover,
.footer-group a:focus-visible,
.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 18px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    margin: 0;
    color: rgba(208, 219, 235, 0.76);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
}

.footer-bottom-links a {
    color: rgba(208, 219, 235, 0.76);
    font-size: 0.9rem;
}

.article-shell {
    max-width: 860px;
    margin: 0 auto;
}

.article-meta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.article-meta-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: #eef3fb;
    color: var(--heading);
    font-size: 0.9rem;
    font-weight: 700;
}

.article-backlink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--primary);
    font-weight: 700;
}

.article-body p {
    margin: 0 0 1.1rem;
}

.article-footer-nav {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #d9e3f0;
}

.article-footer-nav .btn-secondary,
.article-footer-nav .btn-secondary:hover,
.article-footer-nav .btn-secondary:focus-visible {
    Xcolor: #fff;
}

.page-home .hero-copy,
.page-home .hero-media,
.page-home .section-inner,
.page-home .section-inner-plain {
    position: relative;
    z-index: 1;
}

.page-home .hero-media img {
    Xtransform: rotate(-2deg);
}

.page-home .hero-process-visual {
    max-width: 430px;
    margin-left: auto;
}

.page-home .hero-tertiary-link,
.page-home .hero-microcopy {
    max-width: 34rem;
}

.page-home .section-home-proof,
.page-home .section-home-proof {
    padding-top: 30px;
    padding-bottom: 34px;
}

.page-home .section-home-findings,
.page-home .section-home-trust {
    padding-top: 26px;
    padding-bottom: 26px;
}

.page-home {
    background: #f7fafc;
}

.page-home .hero {
    Xpadding: 0 0 56px;
    padding: 100px 0 100px;
    background: linear-gradient(180deg, #09111d 0%, #0f1d33 100%);
}

@media (max-width: 640px) {
  .page-home .hero {
    padding: 0 0 100px;
    Xpadding: 100px 0 100px;
  }
}

.page-home .hero::before {
    display: none;
}

.page-home .hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 120px;
    background: #f7fafc;
    clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
}

.page-home .hero-inner {
    width: min(1280px, calc(100% - 32px));
    padding: 86px 40px 120px;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
}

.page-home .hero-copy,
.page-home .hero-media,
.page-home .section-inner,
.page-home .section-inner-plain {
    position: relative;
    z-index: 1;
}

.page-home .hero-eyebrow,
.page-home .hero-copy h1,
.page-home .hero-text,
.page-home .hero-microcopy,
.page-home .hero-tertiary-link .text-link {
    color: #f8fbff;
}

.page-home .hero-eyebrow {
    color: #8fbaf7;
}

.page-home .hero-text {
    color: rgba(234, 241, 250, 0.86);
    max-width: 36rem;
}

.page-home .hero-microcopy {
    color: rgba(190, 204, 224, 0.78);
}

.page-home .hero-tertiary-link .text-link:hover,
.page-home .hero-tertiary-link .text-link:focus-visible {
    color: #fff;
}

.page-home .hero-media {
    display: flex;
    justify-content: flex-end;
}

.hero-media-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    position: relative;
}

.hero-media-button::after,
.home-screenshot-button::after {
    content: 'Open larger view';
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(9, 17, 29, 0.82);
    color: #f8fbff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: none;
}

.page-home .hero-media img {
    width: min(700px, 100%);
    padding: 10px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
    background: #fff;
}

.page-home .section-home-proof,
.page-home .section-home-findings,
.page-home .section-home-trust,
.page-home .section-home-final {
    padding: 0;
}

.home-proof-band,
.home-findings-band,
.home-final-band {
    width: 100%;
}

.home-proof-band {
    display: block;
    gap: 30px;
    padding: 34px 0 54px;
    background: #f7fafc;
}

.home-proof-copy,
.home-findings-strip {
    max-width: 48rem;
}

.home-proof-band .section-inner {
    display: block;
    width: min(var(--content-width), calc(100% - 32px));
    max-width: var(--content-width);
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.home-proof-copy h2,
.home-findings-strip h2 {
    margin-bottom: 14px;
}

.home-proof-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 20px;
    margin-top: 18px;
}

.screenshot-carousel {
    position: relative;
    width: 100%;
}

.screenshot-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(560px, 72vw);
    gap: 18px;
    overflow-x: auto;
    padding: 8px 0 18px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.screenshot-carousel-track::-webkit-scrollbar {
    display: none;
}

.screenshot-carousel-item {
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.screenshot-carousel .home-screenshot-button::after {
    display: none;
}

.screenshot-carousel-caption {
    display: grid;
    gap: 6px;
    margin-top: 10px;
}

.screenshot-carousel-caption strong {
    color: var(--heading);
}

.screenshot-carousel-caption p {
    margin: 0;
    color: var(--muted);
}

.screenshot-carousel-arrow {
    position: absolute;
    top: 44%;
    z-index: 2;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #d6e1ee;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: #16324f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.10);
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.screenshot-carousel-arrow:hover,
.screenshot-carousel-arrow:focus-visible {
    background: #fff;
    border-color: #8ea8c5;
    color: #0f172a;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.14);
    outline: none;
}

.screenshot-carousel-arrow[disabled] {
    opacity: 0.45;
    cursor: default;
    box-shadow: none;
}

.screenshot-carousel-arrow-prev {
    left: 0;
}

.screenshot-carousel-arrow-next {
    right: 0;
}

.home-screenshot-button {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    position: relative;
    border-radius: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.screenshot-carousel-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    border-radius: 0;
    border: 1px solid #d9e3f0;
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.10);
    Xbackground: #fff;
    background: transparent;
    margin: 0 !important;
}

.home-screenshot-button:hover,
.home-screenshot-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    outline: none;
}

.hero-media-button:hover::after,
.hero-media-button:focus-visible::after,
.home-screenshot-button:hover::after,
.home-screenshot-button:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.hero-media-button:focus-visible {
    outline: 2px solid rgba(120, 168, 232, 0.5);
    outline-offset: 6px;
}

.home-screenshot-button:hover img,
.home-screenshot-button:focus-visible img {
    border-color: #90add1;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}

.home-proof-note p,
.home-finding-copy p,
.home-trust-point p,
.home-final-band p {
    margin: 0;
    color: var(--muted);
}

.home-findings-band {
    padding: 54px 0;
    background: linear-gradient(180deg, #eef5fb 0%, #f4f8fc 100%);
}

.home-finding-list {
    margin-top: 22px;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.home-finding-row {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
}

.home-finding-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(13, 110, 253, 0.08);
    color: #1d4ed8;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.home-finding-copy h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.home-trust-strip {
    width: 100%;
    margin: 0 auto;
    display: grid;
    gap: 18px;
    padding: 30px 0 10px;
}

.home-trust-strip .section-eyebrow,
.home-trust-strip .home-trust-inline,
.home-trust-strip .home-trust-link {
    width: min(var(--content-width), calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.home-trust-inline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.home-trust-point {
    padding-right: 18px;
}

.home-trust-point strong {
    display: block;
    margin-bottom: 8px;
    color: var(--heading);
}

.home-trust-link {
    margin: 0;
}

.home-final-band {
    margin-top: 72px;
    padding: 80px 0 72px;
    position: relative;
    background: linear-gradient(180deg, #0d1628 0%, #101e35 100%);
}

.home-final-band::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -73px;
    height: 74px;
    background: #0d1628;
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 0;
}

.home-final-band .section-eyebrow,
.home-final-band h2,
.home-final-band p,
.home-final-band .text-link {
    color: #f8fbff;
}

.home-final-band .section-inner {
    position: relative;
    z-index: 1;
}

.home-final-band p {
    color: rgba(225, 233, 245, 0.82);
    max-width: 38rem;
}

.home-final-band .button-row {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
    .page-home .hero-media img {
        animation: hero-float 6.5s ease-in-out infinite;
    }

    .page-home .section-block:first-of-type .feature-card,
    .page-home .journey-step,
    .page-home .story-band,
    .page-home .cta-panel {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js .hero,
    .js .section-block,
    .btn,
    .feature-card-media img,
    .btn-arrow-glyph,
    .text-link-arrow,
    .page-home .hero-media img {
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
        transform: none !important;
        will-change: auto !important;
    }

    .page-home .feature-card,
    .page-home .journey-step,
    .page-home .story-band,
    .page-home .cta-panel {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .screenshot-carousel-track {
        scroll-behavior: auto;
    }
}

@media (max-width: 1100px) {
    .home-proof-band {
        padding: 30px;
    }

    .screenshot-carousel-track {
        grid-auto-columns: minmax(460px, 82vw);
    }

    .hero-inner,
    .page-home .hero-inner {
        width: min(var(--content-width), calc(100% - 32px));
    }
}

@media (max-width: 900px) {
    .home-trust-inline,
    .simple-points-grid {
        grid-template-columns: 1fr;
    }

    .home-finding-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .home-finding-index {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .home-proof-band {
        padding: 24px;
    }

    .screenshot-carousel-track {
        grid-auto-columns: minmax(380px, 88vw);
        padding-left: 0;
        padding-right: 0;
    }

    .screenshot-carousel-arrow {
        width: 38px;
        height: 38px;
    }

    .screenshot-carousel-arrow-prev {
        left: 0;
    }

    .screenshot-carousel-arrow-next {
        right: 0;
    }
}

@keyframes page-home-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.legacy-html-block .container {
    max-width: 100%;
    padding: 0;
}

.legacy-html-block > :first-child {
    margin-top: 0;
}

.legacy-html-block > :last-child {
    margin-bottom: 0;
}

.legacy-html-block h1,
.legacy-html-block h2,
.legacy-html-block h3,
.legacy-html-block h4 {
    color: var(--heading);
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 0.9rem;
}

.legacy-html-block h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.03em;
}

.legacy-html-block h2 {
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.legacy-html-block h3 {
    font-size: 1.3rem;
}

.legacy-html-block p,
.legacy-html-block li,
.legacy-html-block td,
.legacy-html-block th {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1rem;
}

.legacy-html-block ul,
.legacy-html-block ol {
    padding-left: 1.3rem;
    margin-bottom: 1.2rem;
}

.legacy-html-block img {
    height: auto;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin: 0 auto 1.4rem;
}

.legacy-html-block table {
    width: 100% !important;
    max-width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    background: #fff;
    border: 1px solid #d9e3f0;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    overflow-x: auto;
}

.legacy-html-block td,
.legacy-html-block th {
    padding: 8px 10px !important;
    border: 1px solid #d9e3f0 !important;
    white-space: normal;
}

.legacy-html-block th,
.legacy-html-block strong {
    color: var(--heading);
}

.legacy-html-block hr {
    width: 18%;
    height: 3px;
    border: none;
    background-color: #f59e0b;
    margin: 2rem auto;
}

.legacy-html-block .title_div {
    text-align: center;
    margin-bottom: 2rem;
}

.legacy-html-block .grid_2wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    padding: 2.2rem 0 !important;
}

.legacy-html-block .grid_2wide_textalign_left,
.legacy-html-block .grid_2wide_textalign_right {
    max-width: none !important;
}

.legacy-html-block .grid_2wide_img img {
    width: 100%;
}

.legacy-html-block .cta-button,
.legacy-html-block .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 6px;
    text-decoration: none;
    margin: 0 6px 8px;
}

.legacy-html-block .cta-button {
    background: var(--primary);
    color: #fff;
}

.legacy-html-block .secondary-button {
    background: #eef3fb;
    color: var(--heading);
}

.legacy-html-block .legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

.legacy-html-block .legal-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
}

.legacy-html-block .legal-note {
    background: #f7faff;
    border: 1px solid #d3e1f4;
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    margin: 0 0 1.2rem;
}

.legacy-search-results {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.legacy-search-card {
    border: 1px solid #dee2e6;
    border-radius: 14px;
    padding: 16px 18px;
    background: #fff;
}

.legacy-search-card h3 {
    margin: 0 0 8px;
    color: var(--heading);
}

.legacy-search-empty {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #f8f9fa;
}

.js .hero,
.js .section-block {
    opacity: 0;
    transform: translateY(var(--reveal-distance));
    transition: opacity 0.55s ease, transform 0.55s ease;
    will-change: opacity, transform;
}

.js .hero.is-visible,
.js .section-block.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.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;
}

@media (max-width: 1080px) {
    .hero-inner,
    .split-layout,
    .card-grid,
    .pricing-grid,
    .pillar-grid {
        grid-template-columns: 1fr;
    }

    .story-band,
    .dashboard-grid,
    .dashboard-findings,
    .model-compare,
    .report-previews,
    .compliance-map,
    .trust-strip,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .feature-stats {
        grid-template-columns: 1fr;
    }

    .split-layout-reverse .section-copy,
    .split-layout-reverse .section-media {
        order: initial;
    }

    .comparison-head,
    .comparison-row {
        grid-template-columns: minmax(180px, 1.5fr) repeat(3, minmax(120px, 1fr));
    }

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

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

    .workflow-strip {
        flex-direction: column;
    }

    .workflow-arrow {
        display: none;
    }

    .feature-card-charm.feature-card-has-media {
        grid-template-columns: 58px minmax(0, 1fr);
        gap: 14px;
    }

    .feature-card-charm .feature-card-media {
        width: 58px;
        min-width: 58px;
        height: 58px;
    }

    .zone-map {
        grid-template-columns: 1fr;
    }

    .zone-connector {
        min-width: 0;
    }

    .page-home .section-block:first-of-type .card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .section-block {
        padding: 44px 0;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-shell {
        position: absolute;
        top: 100%;
        left: 10px;
        right: 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        background: var(--brand-dark);
        border-top: 1px solid var(--brand-border);
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.20);
        border-radius: 0 0 18px 18px;
    }

    .nav-shell.is-open {
        display: flex;
    }

    .main-nav,
    .header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
    }

    .nav-link-main {
        width: 100%;
        justify-content: space-between;
    }

    .nav-group {
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .nav-dropdown {
        position: static;
        min-width: 0;
        margin-top: 6px;
        border-radius: 12px;
        box-shadow: none;
    }

    .nav-group:hover .nav-dropdown {
        display: none;
    }

    .nav-group[data-open="true"] .nav-dropdown {
        display: grid;
    }

    .nav-trigger,
    .header-actions .btn {
        width: 100%;
        justify-content: space-between;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .header-inner,
    .hero-inner,
    .section-inner,
    .section-inner-plain,
    .flash-wrap {
        width: min(var(--content-width), calc(100% - 20px));
    }

    .hero {
        padding-top: 34px;
        padding-bottom: 18px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .section-block {
        padding: 34px 0;
    }

    .section-block-alt .section-inner,
    .cta-panel,
    .prose-block,
    .contact-form-panel,
    .feature-card,
    .pricing-card {
        padding: 20px;
    }

    .hero-inner {
        padding: 28px;
    }

    .page-home .hero {
        padding-bottom: 34px;
    }

    .page-home .hero::after {
        height: 72px;
    }

    .page-home .hero-inner {
        width: min(100%, calc(100% - 20px));
        padding: 56px 0 100px;
        grid-template-columns: 1fr;
    }

    .page-home .hero-media {
        justify-content: flex-start;
    }

    .page-home .hero-media img {
        transform: none !important;
        animation: none !important;
    }

    .home-proof-band,
    .home-findings-band,
    .home-final-band {
        padding-left: 0;
        padding-right: 0;
    }

    .home-trust-inline,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .screenshot-carousel-track {
        grid-auto-columns: minmax(320px, 92vw);
        padding-left: 0;
        padding-right: 0;
    }

    .screenshot-carousel-arrow {
        display: none;
    }

    .home-trust-strip {
        width: 100%;
    }

    .home-trust-strip .section-eyebrow,
    .home-trust-strip .home-trust-inline,
    .home-trust-strip .home-trust-link {
        width: min(var(--content-width), calc(100% - 20px));
    }

    .page-about-company .legacy-html-block .simple-points {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-ui,
    .trust-visual,
    .policy-snippet,
    .zone-map,
    .checklist-visual,
    .compliance-card,
    .model-card,
    .report-preview {
        padding: 18px;
    }

    .legacy-html-block .grid_2wide {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .comparison-head,
    .comparison-row {
        min-width: 700px;
    }

    .product-ui-head {
        flex-direction: column;
    }

    .report-preview-body-summary {
        grid-template-columns: 1fr;
    }

    .preview-toolbar,
    .preview-row,
    .policy-snippet .preview-toolbar,
    .policy-snippet .preview-row {
        grid-template-columns: 1fr;
    }

    .page-home .section-block:first-of-type .card-grid {
        grid-template-columns: 1fr;
    }

    .footer-shell {
        width: min(var(--content-width), calc(100% - 20px));
        padding: 36px 0 20px;
    }
}
