:root {
    --sp-green: #50d33f;
    --sp-green-dark: #176c2b;
    --sp-black: #050805;
    --sp-charcoal: #2e2e2e;
    --sp-bg: #f1f4f7;
    --sp-card: #ffffff;
    --sp-border: #c8d0d8;
    --sp-text: #1e2933;
    --sp-muted: #536170;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--sp-bg);
    color: var(--sp-text);
    overflow-x: hidden;
}

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

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

.sp-header {
    background: var(--sp-charcoal);
    border-bottom: 3px solid var(--sp-green);
    color: #fff;
}

.sp-header-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sp-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.sp-brand img {
    max-height: 48px;
    width: auto;
    display: block;
}

.sp-brand-logo-wide {
    max-width: 190px;
}

.sp-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sp-brand-kicker {
    display: none;
}

.sp-brand-title {
    font-size: 1.15rem;
    font-weight: 800;
    white-space: nowrap;
}

.sp-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.sp-nav a,
.sp-nav-trigger {
    color: #e8efe8;
    font-size: 0.95rem;
    padding: 9px 12px;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}

.sp-nav a:hover,
.sp-nav a.is-active,
.sp-nav-item:hover .sp-nav-trigger,
.sp-nav-trigger.is-active {
    background: rgba(80, 211, 63, 0.16);
    color: #ffffff;
}

.sp-nav-item {
    position: relative;
}

.sp-nav-trigger::after {
    content: "▾";
    font-size: 0.72em;
    margin-left: 6px;
    color: var(--sp-green);
}

.sp-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 238px;
    background: #111711;
    border: 1px solid rgba(80, 211, 63, 0.35);
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    display: none;
    z-index: 50;
}

.sp-nav-item:hover .sp-dropdown,
.sp-nav-item:focus-within .sp-dropdown,
.sp-nav-item.is-open .sp-dropdown {
    display: block;
}

.sp-dropdown a {
    display: block;
    border-radius: 10px;
    padding: 10px 12px;
    color: #e8efe8;
    white-space: nowrap;
}

.sp-dropdown a:hover,
.sp-dropdown a.is-active {
    background: rgba(80, 211, 63, 0.18);
}

.sp-login-link {
    border: 1px solid rgba(80, 211, 63, 0.75) !important;
    color: #ffffff !important;
    background: rgba(80, 211, 63, 0.12);
    font-weight: 700;
}

.sp-login-link:hover,
.sp-login-link.is-active {
    background: var(--sp-green) !important;
    color: var(--sp-black) !important;
}

.sp-main {
    flex: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 42px 0 64px;
}

.sp-placeholder-card {
    background: var(--sp-card);
    border: 1px solid var(--sp-border);
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.sp-placeholder-card h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.sp-placeholder-card p {
    max-width: 760px;
    color: var(--sp-muted);
    font-size: 1.1rem;
    line-height: 1.65;
}

.sp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 26px;
}

.sp-hero-panel,
.sp-side-panel,
.sp-section,
.sp-product-card {
    background: var(--sp-card);
    border: 1px solid var(--sp-border);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.sp-hero-panel {
    padding: 42px;
}

.sp-side-panel {
    padding: 28px;
    background: linear-gradient(145deg, #ffffff, #eef8ef);
}

.sp-kicker {
    color: var(--sp-green-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sp-hero h1 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.sp-hero p,
.sp-section p {
    color: var(--sp-muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

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

.sp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid var(--sp-green-dark);
    font-weight: 800;
    text-align: center;
}

.sp-button-primary {
    background: var(--sp-green);
    color: var(--sp-black);
}

.sp-button-secondary {
    color: var(--sp-green-dark);
    background: #fff;
}

.sp-contact-hero .sp-hero-panel {
    background:
        radial-gradient(circle at top right, rgba(80, 211, 63, 0.16), transparent 38%),
        var(--sp-card);
}

.sp-contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    color: var(--sp-muted);
    font-weight: 700;
}

.sp-contact-direct a {
    color: var(--sp-green-dark);
}

.sp-contact-section .sp-section-header p {
    margin: 0;
    max-width: 440px;
    text-align: right;
}

.sp-contact-form {
    display: grid;
    gap: 18px;
}

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

.sp-contact-form label {
    display: grid;
    gap: 7px;
    color: var(--sp-text);
    font-weight: 800;
}

.sp-contact-form label > span {
    font-size: 0.92rem;
}

.sp-contact-form input,
.sp-contact-form select,
.sp-contact-form textarea {
    width: 100%;
    border: 1px solid var(--sp-border);
    border-radius: 12px;
    background: #fff;
    color: var(--sp-text);
    font: inherit;
    padding: 12px 13px;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sp-contact-form textarea {
    resize: vertical;
    min-height: 170px;
    line-height: 1.55;
}

.sp-contact-form input:focus,
.sp-contact-form select:focus,
.sp-contact-form textarea:focus {
    border-color: var(--sp-green-dark);
    box-shadow: 0 0 0 4px rgba(80, 211, 63, 0.18);
}

.sp-check-row {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 10px !important;
    font-weight: 700 !important;
}

.sp-check-row input {
    width: auto;
    min-width: 18px;
    height: 18px;
}

.sp-form-alert {
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    line-height: 1.45;
}

.sp-form-alert ul {
    margin: 8px 0 0;
}

.sp-form-alert-success {
    border: 1px solid rgba(23, 108, 43, 0.28);
    background: rgba(80, 211, 63, 0.14);
    color: var(--sp-green-dark);
    font-weight: 800;
}

.sp-form-alert-error {
    border: 1px solid rgba(190, 18, 60, 0.28);
    background: rgba(254, 226, 226, 0.72);
    color: #7f1d1d;
}

.sp-hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.sp-side-panel h2,
.sp-section h2 {
    margin: 0 0 12px;
    font-size: 1.55rem;
}

.sp-side-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    display: grid;
    gap: 12px;
}

.sp-side-list li {
    padding-left: 22px;
    position: relative;
    color: var(--sp-text);
    line-height: 1.45;
}

.sp-side-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sp-green);
}

.sp-section {
    padding: 32px;
    margin-top: 26px;
}

.sp-section-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.sp-section-header h2 {
    margin: 0;
}

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

.sp-product-card {
    padding: 20px;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.sp-product-card:hover {
    transform: translateY(-3px);
    border-color: rgba(80, 211, 63, 0.75);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12);
}

.sp-product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.sp-product-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #0a0f0a;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.sp-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-status {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 5px 8px;
    border-radius: 999px;
    background: #edf8ee;
    color: var(--sp-green-dark);
}

.sp-product-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
}

.sp-product-card p {
    margin: 0;
    color: var(--sp-muted);
    line-height: 1.55;
}

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

.sp-mini-card {
    background: #f8fbf8;
    border: 1px solid var(--sp-border);
    border-radius: 14px;
    padding: 20px;
}

.sp-mini-card h3 {
    margin: 0 0 8px;
}

.sp-mini-card p {
    margin: 0;
    font-size: 1rem;
}

.sp-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 26px;
}

.sp-product-hero-main {
    background: var(--sp-card);
    border: 1px solid var(--sp-border);
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.sp-product-hero-main h1 {
    margin: 0 0 14px;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 0.98;
}

.sp-product-hero-main p {
    color: var(--sp-muted);
    font-size: 1.12rem;
    line-height: 1.65;
    max-width: 780px;
}

.sp-product-hero-art {
    background: linear-gradient(145deg, #111711, #1f2a1f);
    color: #fff;
    border: 1px solid rgba(80, 211, 63, 0.45);
    border-radius: 22px;
    padding: 20px;
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.sp-product-hero-art img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    margin-bottom: 14px;
}

.sp-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
}

.sp-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: #edf8ee;
    color: var(--sp-green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.sp-product-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.sp-panel {
    background: #f8fbf8;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 24px;
}

.sp-panel h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.sp-panel p {
    margin: 0;
}

.sp-research-report .sp-panel > * + * {
    margin-top: 14px;
}

.sp-research-report :is(.sp-panel, .sp-feature-card, .sp-mini-card) p {
    line-height: 1.65;
}

.sp-research-report :is(.sp-panel, .sp-feature-card, .sp-mini-card) p + p {
    margin-top: 14px;
}

.sp-research-report .sp-section > :is(.sp-product-split, .sp-feature-grid, .sp-three-grid, .sp-panel)
    + :is(.sp-product-split, .sp-feature-grid, .sp-three-grid, .sp-panel) {
    margin-top: 18px;
}

.sp-research-report a {
    color: var(--sp-green-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.sp-research-report .sp-button {
    text-decoration: none;
}

.sp-research-report li + li {
    margin-top: 8px;
}

.sp-research-report pre {
    max-width: 100%;
    margin: 16px 0 0;
    padding: 18px;
    overflow-x: auto;
    border: 1px solid #cbd8cb;
    border-radius: 12px;
    background: #172019;
    color: #e7f2e8;
    font: 0.86rem/1.55 Consolas, "Cascadia Mono", monospace;
    white-space: pre;
}

.sp-research-report :not(pre) > code {
    padding: 0.12em 0.35em;
    border-radius: 5px;
    background: #e7efe7;
    color: #17351d;
    overflow-wrap: anywhere;
}

.sp-evidence-disclosure {
    margin-top: 18px;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    background: #f8fbf8;
    overflow: hidden;
}

.sp-evidence-disclosure summary {
    padding: 18px 22px;
    color: var(--sp-green-dark);
    cursor: pointer;
    font-weight: 900;
}

.sp-evidence-disclosure[open] summary {
    border-bottom: 1px solid var(--sp-border);
}

.sp-disclosure-body {
    padding: 4px 22px 18px;
}

.sp-disclosure-body > :first-child {
    margin-top: 14px;
}

.sp-disclosure-body > :last-child {
    margin-bottom: 0;
}

.sp-research-updated {
    margin: -6px 0 14px;
    color: var(--sp-muted);
    font-size: 0.9rem;
}

.sp-change-log {
    margin: 0 0 20px;
}

.sp-research-report .sp-evidence-disclosure pre {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.sp-research-report .sp-evidence-disclosure + .sp-product-split {
    margin-top: 18px;
}

.sp-research-report [id] {
    scroll-margin-top: 100px;
}

.sp-research-nav {
    margin: 24px 0 34px;
    padding: 24px;
    border: 1px solid var(--sp-border);
    border-radius: 18px;
    background: #f8fbf8;
}

.sp-research-nav-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.sp-research-nav-heading h2 {
    margin: 2px 0 0;
    font-size: 1.45rem;
}

.sp-research-nav-top {
    font-size: 0.88rem;
    white-space: nowrap;
}

.sp-research-nav-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.sp-research-nav-links a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid #cbd8cb;
    border-radius: 10px;
    background: #fff;
    color: #17351d;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
}

.sp-research-nav-links a:hover,
.sp-research-nav-links a:focus-visible {
    border-color: var(--sp-green);
    background: #edf8ee;
    color: var(--sp-green-dark);
}

.sp-project-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 0 0 18px;
}

.sp-project-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    background: #fff;
}

.sp-project-step > span {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--sp-green-dark);
    color: #fff;
    font-weight: 900;
}

.sp-project-step h3 {
    margin: 3px 0 7px;
    font-size: 1rem;
}

.sp-project-step p {
    margin: 0;
    color: var(--sp-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.sp-project-overview .sp-hero-actions {
    margin-top: 20px;
}

.sp-project-overview .sp-hero-actions + .sp-panel {
    margin-top: 18px;
}

.sp-research-participation-cta .sp-panel {
    margin-top: 0;
}

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

@media (max-width: 980px) {
    .sp-research-nav-links,
    .sp-project-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .sp-research-nav {
        padding: 18px;
    }

    .sp-research-nav-heading {
        align-items: flex-start;
    }

    .sp-research-nav-top {
        display: none;
    }

    .sp-research-nav-links,
    .sp-project-flow {
        grid-template-columns: 1fr;
    }
}

.sp-screenshot-card {
    margin: 0;
    background: #f8fbf8;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    overflow: hidden;
}

.sp-screenshot-wide {
    grid-column: 1 / -1;
}

.sp-screenshot-wide img {
    height: 380px;
}

.sp-screenshot-card h3 {
    margin: 0;
    padding: 14px 16px;
    font-size: 1rem;
}

.sp-screenshot-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #ffffff;
    border-top: 1px solid var(--sp-border);
}

.sp-lightbox-trigger {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    background: #ffffff;
    color: inherit;
    cursor: zoom-in;
    position: relative;
    font: inherit;
}

.sp-lightbox-trigger img {
    transition: transform 0.18s ease, filter 0.18s ease;
}

.sp-lightbox-trigger:hover img,
.sp-lightbox-trigger:focus-visible img {
    transform: scale(1.015);
    filter: contrast(1.02);
}

.sp-lightbox-trigger span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 23, 17, 0.88);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.sp-lightbox-trigger:hover span,
.sp-lightbox-trigger:focus-visible span {
    opacity: 1;
    transform: translateY(0);
}

.sp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(5, 8, 5, 0.86);
}

.sp-lightbox.is-open {
    display: flex;
}

.sp-lightbox-panel {
    width: min(1280px, 100%);
    max-height: calc(100vh - 56px);
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    background: #ffffff;
    border: 1px solid rgba(80, 211, 63, 0.45);
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.sp-lightbox-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: #111711;
    color: #ffffff;
}

.sp-lightbox-title {
    font-weight: 900;
}

.sp-lightbox-close {
    border: 1px solid rgba(80, 211, 63, 0.7);
    border-radius: 999px;
    padding: 7px 12px;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
}

.sp-lightbox-close:hover,
.sp-lightbox-close:focus-visible {
    background: var(--sp-green);
    color: var(--sp-black);
}

.sp-lightbox-image-wrap {
    overflow: auto;
    padding: 18px;
    background: #f4f7f4;
}

.sp-lightbox-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    background: #ffffff;
}

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

.sp-compare-card {
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--sp-border);
}

.sp-compare-card h3 {
    margin: 0 0 12px;
}

.sp-compare-card ul,
.sp-feature-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--sp-muted);
    line-height: 1.7;
}

.sp-before {
    background: #fff8f2;
}

.sp-after {
    background: #f0fbf0;
}

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

.sp-workflow-step {
    background: #f8fbf8;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 20px;
}

.sp-step-num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sp-green);
    color: var(--sp-black);
    font-weight: 900;
    margin-bottom: 12px;
}

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

.sp-feature-card {
    background: #f8fbf8;
    border: 1px solid var(--sp-border);
    border-radius: 16px;
    padding: 22px;
}

.sp-feature-card h3,
.sp-workflow-step h3 {
    margin: 0 0 8px;
}

.sp-cta {
    background: linear-gradient(145deg, #111711, #223022);
    color: #fff;
    border: 1px solid rgba(80, 211, 63, 0.45);
    border-radius: 22px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.sp-cta h2 {
    margin: 0 0 8px;
}

.sp-cta p {
    color: #d8e5d8;
    margin: 0;
}

.sp-footer {
    background: var(--sp-black);
    color: #d7dfd7;
    border-top: 1px solid rgba(80, 211, 63, 0.35);
}

.sp-footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.sp-footer-tagline {
    color: #9fb39f;
}

@media (max-width: 760px) {
    .sp-main *,
    .sp-header * {
        box-sizing: border-box;
        min-width: 0;
    }

    .sp-header-inner,
    .sp-main,
    .sp-footer-inner {
        width: min(1180px, calc(100% - 24px));
    }

    .sp-header-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
        gap: 14px;
    }

    .sp-brand {
        width: 100%;
        gap: 10px;
    }

    .sp-brand-logo-wide {
        max-width: 150px;
    }

    .sp-brand-text {
        min-width: 0;
    }

    .sp-brand-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .sp-brand-title {
        white-space: normal;
        font-size: 1rem;
        line-height: 1.05;
    }

    .sp-nav {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        justify-content: flex-start;
        gap: 6px;
    }

    .sp-nav a,
    .sp-nav-trigger {
        width: 100%;
        display: block;
        border-radius: 12px;
    }

    .sp-product-hero,
    .sp-section,
    .sp-product-hero-main,
    .sp-product-hero-art,
    .sp-panel,
    .sp-screenshot-card,
    .sp-compare-card,
    .sp-workflow-step,
    .sp-feature-card,
    .sp-mini-card {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .sp-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sp-button {
        width: 100%;
        padding: 0 14px;
    }

    .sp-dropdown {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 6px;
        width: 100%;
    }

    .sp-nav-item:hover .sp-dropdown,
    .sp-nav-item:focus-within .sp-dropdown,
    .sp-nav-item.is-open .sp-dropdown {
        display: block;
    }

    .sp-hero,
    .sp-form-grid,
    .sp-product-grid,
    .sp-three-grid,
    .sp-product-hero,
    .sp-product-split,
    .sp-screenshot-grid,
    .sp-compare-grid,
    .sp-workflow-grid,
    .sp-feature-grid,
    .sp-cta {
        grid-template-columns: 1fr;
    }

    .sp-hero-panel,
    .sp-section,
    .sp-product-hero-main {
        padding: 22px;
    }

    .sp-product-hero-main h1 {
        font-size: 2.15rem;
    }

    .sp-product-hero-main p {
        font-size: 1rem;
    }

    .sp-product-hero-art {
        min-height: auto;
        padding: 18px;
    }

    .sp-badge {
        font-size: 0.72rem;
        max-width: 100%;
        white-space: normal;
    }

    .sp-screenshot-card img {
        height: auto;
        min-height: 0;
        max-height: none;
    }

    .sp-screenshot-wide {
        grid-column: auto;
    }

    .sp-screenshot-wide img {
        height: auto;
    }

    .sp-lightbox {
        padding: 12px;
    }

    .sp-lightbox-panel {
        max-height: calc(100vh - 24px);
    }

    .sp-lightbox-image-wrap {
        padding: 10px;
    }

    .sp-cta {
        display: grid;
    }

    .sp-contact-section .sp-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .sp-contact-section .sp-section-header p {
        width: 100%;
        margin: 0;
        text-align: left;
    }
}
