* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #172033;
    background: #f5f6fa;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px clamp(18px, 5vw, 64px);
    background: rgba(245, 246, 250, 0.9);
    border-bottom: 1px solid rgba(213, 218, 229, 0.8);
    backdrop-filter: blur(12px);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #4f2aa0;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4b5563;
    font-size: 14px;
    font-weight: 600;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover {
    color: #6f42c1;
    background: rgba(111, 66, 193, 0.08);
}

.nav-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    color: #fff;
    background: #111827;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(17, 24, 39, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-download:hover {
    background: #6f42c1;
    box-shadow: 0 14px 28px rgba(111, 66, 193, 0.22);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: calc(100vh - 68px);
    display: flex;
    align-items: center;
    padding: clamp(40px, 7vw, 84px) clamp(18px, 5vw, 64px);
    overflow: hidden;
}

.hero-visual {
    position: absolute;
    inset: 38px clamp(18px, 5vw, 64px);
    opacity: 0.98;
}

.browser-frame {
    position: absolute;
    inset: 3% 0 5% auto;
    width: min(850px, 66vw);
    min-height: 500px;
    background: #ffffff;
    border: 1px solid #dfe3ee;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(33, 40, 55, 0.12);
    overflow: hidden;
}

.browser-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid #edf0f6;
}

.browser-dots {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd2df;
}

.browser-address {
    flex: 1;
    max-width: 360px;
    margin-left: 8px;
    padding: 8px 14px;
    color: #6b7280;
    background: #f7f8fb;
    border: 1px solid #edf0f6;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.editor-surface {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 286px;
    gap: 24px;
    align-items: stretch;
    min-height: 430px;
    padding: 34px;
    background:
        linear-gradient(90deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.7)),
        radial-gradient(circle at 86% 28%, rgba(111, 66, 193, 0.08), transparent 32%);
}

.editor-document {
    display: grid;
    align-content: start;
    gap: 16px;
    min-height: 360px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #e7e9f0;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.doc-toolbar,
.editor-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.doc-toolbar {
    padding-bottom: 14px;
    border-bottom: 1px solid #edf0f6;
    color: #111827;
    font-size: 14px;
}

.doc-toolbar span,
.editor-meta span {
    color: #647084;
    font-size: 12px;
    font-weight: 700;
}

.editor-line {
    width: 100%;
    margin: 0;
    padding: 14px 18px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #edf0f6;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.45;
}

.editor-line:nth-child(2) {
    width: 94%;
}

.editor-line:nth-child(3) {
    width: 100%;
}

.editor-line:nth-child(4) {
    width: 82%;
}

.editor-meta {
    margin-top: 6px;
    padding-top: 4px;
}

.has-error {
    border-color: #f2c7c7;
    box-shadow: inset 4px 0 0 #e53e3e;
}

.extension-preview {
    align-self: center;
    width: 100%;
    padding: 20px;
    background: #161a25;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 22px 50px rgba(17, 24, 39, 0.28);
}

.preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #e8e2ff;
    font-size: 13px;
}

.preview-head img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.preview-card {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-size: 13px;
}

.preview-card + .preview-card {
    margin-top: 10px;
}

.preview-card strong {
    color: #91f0b8;
}

.preview-card.active {
    border-color: rgba(145, 240, 184, 0.4);
}

.preview-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 14px;
    color: #111827;
    background: #91f0b8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    padding: 42px 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: #6f42c1;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 650px;
    color: #101827;
    font-size: 68px;
    line-height: 0.98;
    font-weight: 850;
}

.hero-lead {
    max-width: 560px;
    margin: 24px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.65;
}

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

.hero-note {
    max-width: 430px;
    margin: 12px 0 0;
    color: #647084;
    font-size: 13px;
    line-height: 1.5;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

.btn.primary {
    color: #fff;
    background: #6f42c1;
    box-shadow: 0 10px 24px rgba(111, 66, 193, 0.2);
}

.btn.secondary {
    color: #374151;
    background: #fff;
    border: 1px solid #d8dce7;
}

.section {
    padding: 76px clamp(18px, 5vw, 64px);
}

.section.compact {
    background: #fff;
}

.section.workflow {
    background: #f0f3f8;
}

.section-heading {
    max-width: 620px;
}

.section-heading h2 {
    margin: 0;
    color: #111827;
    font-size: 40px;
    line-height: 1.08;
}

.section-heading p:not(.eyebrow) {
    color: #566176;
    font-size: 16px;
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
}

.feature-grid article,
.workflow-step,
.permission-card,
.steps,
.security-list {
    background: #fff;
    border: 1px solid #e7e9f0;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.05);
}

.feature-grid article {
    padding: 22px;
}

.workflow-step {
    padding: 24px;
}

.workflow-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: #6f42c1;
    border-radius: 8px;
    font-weight: 900;
}

.workflow-step h3 {
    margin: 18px 0 8px;
    font-size: 18px;
}

.workflow-step p {
    margin: 0;
    color: #5f687a;
    font-size: 14px;
    line-height: 1.6;
}

.feature-index {
    color: #6f42c1;
    font-size: 12px;
    font-weight: 900;
}

.feature-grid h3 {
    margin: 12px 0 8px;
    font-size: 17px;
}

.feature-grid p,
.security-list p {
    margin: 0;
    color: #5f687a;
    font-size: 14px;
    line-height: 1.6;
}

.section.split {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
    gap: 40px;
    align-items: start;
}

.steps {
    margin: 0;
    padding: 24px 24px 24px 46px;
    color: #3f4859;
    line-height: 1.8;
}

code {
    color: #4f2aa0;
    background: #f1edff;
    border-radius: 5px;
    padding: 2px 6px;
}

.section.security {
    background: #f0f3f8;
}

.section.permissions {
    background: #fff;
}

.section.product {
    background: #f6f7fb;
}

.product-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.68fr);
    grid-template-areas:
        "workspace panel"
        "workspace popup";
    gap: 18px;
    margin-top: 34px;
    align-items: stretch;
}

.product-workspace,
.product-panel,
.product-popup {
    border: 1px solid #e7e9f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-workspace:hover,
.product-panel:hover,
.product-popup:hover {
    border-color: #d8c8ff;
    box-shadow: 0 18px 40px rgba(111, 66, 193, 0.1);
    transform: translateY(-2px);
}

.product-workspace {
    grid-area: workspace;
    position: relative;
    min-height: 460px;
    overflow: hidden;
}

.workspace-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #647084;
    border-bottom: 1px solid #edf0f6;
    font-size: 12px;
    font-weight: 800;
}

.workspace-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.workspace-bar strong {
    color: #172033;
}

.workspace-bar em {
    margin-left: auto;
    color: #6f42c1;
    font-style: normal;
}

.workspace-editor {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 4vw, 42px);
}

.workspace-editor p {
    margin: 0;
    max-width: 680px;
    padding: 15px 18px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #edf0f6;
    border-radius: 8px;
    font-size: 17px;
    line-height: 1.55;
}

.workspace-editor p:nth-child(1) {
    width: 76%;
}

.workspace-editor p:nth-child(2) {
    width: 96%;
}

.workspace-editor p:nth-child(3) {
    width: 70%;
}

.workspace-error {
    border-color: #f3c4c4 !important;
    box-shadow: inset 4px 0 0 #e53e3e;
}

.workspace-bubble {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.24);
}

.workspace-bubble span {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.workspace-bubble strong {
    position: absolute;
    top: -6px;
    right: -6px;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    color: #fff;
    background: #111827;
    border: 2px solid #fff;
    border-radius: 999px;
    font-size: 11px;
}

.product-panel {
    grid-area: panel;
    overflow: hidden;
}

.product-panel-head,
.popup-preview-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 15px;
    color: #fff;
    background: linear-gradient(135deg, #6f42c1, #8b5cf6);
}

.product-panel-head img,
.popup-preview-head img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.product-panel-head strong {
    flex: 1;
    font-size: 14px;
}

.product-panel-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    color: #6f42c1;
    background: #fff;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.product-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e7e9f0;
}

.product-tabs span {
    padding: 11px;
    color: #647084;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
}

.product-tabs .active {
    color: #6f42c1;
    border-bottom: 2px solid #6f42c1;
}

.product-suggestion {
    margin: 12px;
    padding: 13px;
    border: 1px solid #e7e9f0;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.045);
}

.product-suggestion.active {
    border-color: #f59e0b;
    box-shadow: inset 3px 0 0 #f59e0b;
}

.product-suggestion div {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.wrong,
.right {
    padding: 5px 9px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
}

.wrong {
    color: #dc2626;
    background: #fff1f2;
    text-decoration: line-through;
}

.right {
    color: #059669;
    background: #ecfdf5;
}

.arrow {
    color: #94a3b8;
    font-size: 12px;
}

.product-suggestion p {
    margin: 10px 0 0;
    padding-top: 8px;
    color: #647084;
    border-top: 1px dashed #e2e8f0;
    font-size: 11px;
}

.product-panel button {
    width: calc(100% - 24px);
    min-height: 38px;
    margin: 0 12px 14px;
    color: #fff;
    background: #10b981;
    border: 0;
    border-radius: 8px;
    font-weight: 900;
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.18);
}

.product-popup {
    grid-area: popup;
    overflow: hidden;
}

.popup-preview-head div {
    display: grid;
    gap: 2px;
}

.popup-preview-head span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.popup-preview-site,
.popup-preview-input {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 14px;
    padding: 11px 12px;
    background: #f8fafc;
    border: 1px solid #e7e9f0;
    border-radius: 8px;
}

.popup-preview-site span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
}

.popup-preview-site strong,
.popup-preview-input strong {
    color: #172033;
    font-size: 12px;
}

.popup-preview-site em {
    margin-left: auto;
    color: #647084;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

.popup-preview-input {
    justify-content: space-between;
    color: #647084;
    font-size: 12px;
    font-weight: 700;
}

.popup-preview-input strong {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    color: #fff;
    background: #10b981;
    border-radius: 7px;
    font-size: 18px;
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.permission-card {
    padding: 22px;
}

.permission-card strong {
    display: inline-flex;
    margin-bottom: 12px;
    color: #4f2aa0;
    font-size: 14px;
    font-weight: 900;
}

.permission-card p {
    margin: 0;
    color: #5f687a;
    font-size: 14px;
    line-height: 1.6;
}

.security-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 30px;
    overflow: hidden;
}

.security-list p {
    padding: 24px;
}

.security-list p + p {
    border-left: 1px solid #e7e9f0;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto auto;
    align-items: center;
    gap: 28px;
    padding: 34px clamp(18px, 5vw, 64px);
    color: #d6d9e2;
    background: #111827;
    font-size: 14px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 42px;
    height: 42px;
    border-radius: 8px;
}

.footer-brand strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 15px;
}

.footer-brand span {
    color: #aeb5c4;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-footer a {
    padding: 8px 10px;
    color: #d6d9e2;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.footer-version {
    justify-self: end;
    padding: 8px 10px;
    color: #c7d2fe;
    background: rgba(111, 66, 193, 0.22);
    border: 1px solid rgba(199, 210, 254, 0.18);
    border-radius: 8px;
    font-weight: 900;
}

.policy-main {
    width: min(1060px, calc(100% - 36px));
    margin: 0 auto;
    padding: 58px 0 72px;
}

.policy-hero {
    padding: 46px 0 34px;
}

.policy-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #101827;
    font-size: 48px;
    line-height: 1.04;
    font-weight: 850;
}

.policy-hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.65;
}

.policy-meta {
    display: inline-flex;
    margin-top: 20px;
    padding: 8px 12px;
    color: #4f2aa0;
    background: #f1edff;
    border: 1px solid #d8c8ff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.policy-card,
.policy-section {
    background: #ffffff;
    border: 1px solid #e7e9f0;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.06);
}

.policy-card {
    padding: 20px;
}

.policy-card strong {
    display: block;
    margin-bottom: 10px;
    color: #4f2aa0;
    font-size: 15px;
    font-weight: 900;
}

.policy-card p,
.policy-section p,
.policy-list {
    color: #566176;
    font-size: 15px;
    line-height: 1.7;
}

.policy-card p {
    margin: 0;
}

.policy-section {
    padding: 26px;
}

.policy-section + .policy-section {
    margin-top: 16px;
}

.policy-section h2 {
    margin: 0 0 12px;
    color: #111827;
    font-size: 24px;
    line-height: 1.2;
}

.policy-section p {
    margin: 0 0 12px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section a {
    color: #6f42c1;
    font-weight: 800;
}

.policy-list {
    margin: 10px 0 14px;
    padding-left: 22px;
}

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

.is-revealed {
    animation: revealUp 0.55s ease both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@media (max-width: 980px) {
    .hero {
        align-items: end;
        min-height: 930px;
    }

    .hero-visual {
        inset: 20px 18px auto;
        height: 610px;
    }

    .browser-frame {
        min-height: 560px;
        width: 100%;
    }

    .editor-surface {
        grid-template-columns: minmax(0, 1fr) 260px;
        min-height: 490px;
        padding: 24px;
    }

    .extension-preview {
        align-self: center;
    }

    .hero-content {
        margin-top: 560px;
    }

    .feature-grid,
    .workflow-grid,
    .permission-grid,
    .security-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "workspace"
            "panel"
            "popup";
    }

    .product-workspace {
        min-height: 420px;
    }

    .section.split {
        grid-template-columns: 1fr;
    }

    .security-list p:nth-child(3) {
        border-left: 0;
        border-top: 1px solid #e7e9f0;
        grid-column: 1 / -1;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .footer-links {
        justify-content: flex-start;
    }

    .footer-version {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 14px 18px;
    }

    .header-actions {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .site-nav {
        width: 100%;
        gap: 4px;
        overflow-x: auto;
        font-size: 13px;
    }

    .site-nav a {
        flex: 0 0 auto;
        padding: 8px 9px;
        white-space: nowrap;
    }

    .nav-download {
        width: 100%;
    }

    .hero {
        min-height: auto;
        padding-top: 34px;
    }

    .hero-visual {
        position: relative;
        inset: auto;
        height: auto;
        width: 100%;
    }

    .browser-frame {
        position: relative;
        inset: auto;
        min-height: 0;
        width: 100%;
    }

    .editor-surface {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 18px;
    }

    .editor-document {
        min-height: 0;
        padding: 18px;
    }

    .editor-line {
        font-size: 14px;
    }

    .extension-preview {
        width: 100%;
    }

    .hero-content {
        margin-top: 26px;
        padding-bottom: 0;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.04;
    }

    .section-heading h2 {
        font-size: 30px;
        line-height: 1.12;
    }

    .policy-main {
        width: min(100% - 32px, 640px);
        padding: 34px 0 54px;
    }

    .policy-hero {
        padding: 20px 0 28px;
    }

    .policy-hero h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .policy-hero p {
        font-size: 16px;
    }

    .policy-section {
        padding: 20px;
    }

    .feature-grid,
    .workflow-grid,
    .permission-grid,
    .security-list {
        grid-template-columns: 1fr;
    }

    .product-grid {
        gap: 14px;
    }

    .product-workspace {
        min-height: 0;
    }

    .workspace-bar {
        flex-wrap: wrap;
    }

    .workspace-bar em {
        width: 100%;
        margin-left: 20px;
    }

    .workspace-editor {
        padding: 18px;
    }

    .workspace-editor p,
    .workspace-editor p:nth-child(1),
    .workspace-editor p:nth-child(2),
    .workspace-editor p:nth-child(3) {
        width: 100%;
        font-size: 14px;
    }

    .workspace-bubble {
        position: relative;
        right: auto;
        bottom: auto;
        margin: 0 18px 18px auto;
    }

    .security-list p + p {
        border-left: 0;
        border-top: 1px solid #e7e9f0;
    }

    .site-footer {
        padding: 28px 18px;
    }

    .footer-brand {
        align-items: flex-start;
    }

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

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
