:root {
    --bg: #f4efe6;
    --bg-alt: #fffaf2;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --surface-dark: #101826;
    --text: #1d1f24;
    --text-soft: #5b6070;
    --border: rgba(22, 28, 45, 0.09);
    --border-strong: rgba(22, 28, 45, 0.16);
    --accent: #ff6b2d;
    --accent-dark: #d75017;
    --accent-soft: rgba(255, 107, 45, 0.12);
    --success: #12715f;
    --warning: #9c6415;
    --danger: #b42318;
    --shadow: 0 18px 45px rgba(14, 19, 30, 0.08);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: min(1160px, calc(100vw - 32px));
    --transition: 180ms ease;
    --heading-font: Georgia, "Times New Roman", serif;
    --body-font: "Trebuchet MS", "Segoe UI Variable", "Gill Sans", sans-serif;
}

html[data-theme="dark"] {
    --bg: #0f131b;
    --bg-alt: #141c28;
    --surface: rgba(24, 32, 46, 0.85);
    --surface-strong: #1c2434;
    --surface-dark: #f4efe6;
    --text: #eef0f5;
    --text-soft: #bac1d0;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --accent: #ff8d54;
    --accent-dark: #ff6b2d;
    --accent-soft: rgba(255, 141, 84, 0.14);
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    background:
        radial-gradient(circle at top left, rgba(255, 146, 84, 0.14), transparent 22rem),
        radial-gradient(circle at top right, rgba(50, 90, 160, 0.14), transparent 18rem),
        linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.65;
}

a {
    color: inherit;
}

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

code {
    padding: 0.2rem 0.4rem;
    border-radius: 999px;
    background: var(--accent-soft);
    font-size: 0.92em;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(244, 239, 230, 0.68);
    border-bottom: 1px solid var(--border);
}

html[data-theme="dark"] .site-header {
    background: rgba(15, 19, 27, 0.76);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark strong,
.section-heading h1,
.section-heading h2,
.article-header h1,
.feature-card h3,
.blog-card h2,
.blog-card h3,
.callout h2,
.sidebar-card h2,
.site-footer h2 {
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

.brand-mark small {
    display: block;
    color: var(--text-soft);
}

.brand-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #ffb07a 100%);
    box-shadow: 0 0 0 8px var(--accent-soft);
}

.header-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.header-nav a,
.theme-toggle,
.text-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.theme-toggle {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: transparent;
    padding: 10px 14px;
    cursor: pointer;
}

.hero,
.content-section,
.article-shell {
    padding: 72px 0;
}

.hero-grid,
.article-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.hero-copy {
    animation: rise-in 560ms ease both;
}

.uploader-panel,
.callout,
.feature-card,
.blog-card,
.sidebar-card,
.result-card,
.stat-card,
.progress-card,
.upload-item,
.results-summary,
.faq-item,
.share-box {
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.hero h1,
.section-heading h1,
.article-header h1 {
    margin: 0 0 18px;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 0.97;
}

.hero-subtitle,
.article-lead {
    max-width: 58ch;
    font-size: 1.08rem;
    color: var(--text-soft);
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent-dark);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.inline-list,
.footer-links,
.sidebar-links,
.article-list {
    margin: 0;
    padding-left: 1.15rem;
}

.inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    padding: 0;
    list-style: none;
}

.inline-list li::before {
    content: "\2022";
    margin-right: 10px;
    color: var(--accent);
}

.inline-list li {
    color: var(--text-soft);
}

.hero-stats,
.card-grid,
.blog-card-grid,
.results-grid {
    display: grid;
    gap: 18px;
}

.hero-stats {
    margin-top: 28px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card,
.uploader-panel,
.callout,
.feature-card,
.blog-card,
.sidebar-card,
.result-card,
.progress-card,
.upload-item,
.results-summary,
.share-box {
    border-radius: var(--radius-lg);
}

.stat-card {
    padding: 18px;
}

.stat-card strong {
    display: block;
    font-size: 1.4rem;
    color: var(--accent-dark);
}

.stat-card span {
    color: var(--text-soft);
}

.uploader-panel {
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.uploader-panel::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 45, 0.22), transparent 65%);
    pointer-events: none;
}

.hero-ad-container {
    margin-top: 28px;
}

.results-bottom-ad {
    margin-top: 24px;
}

.results-bottom-ad + .share-box {
    margin-top: 24px;
}

.ad-slot {
    margin: 0;
}

.ad-slot__inner {
    position: relative;
    min-height: 140px;
    padding: 18px 20px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
        var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.ad-slot__inner::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 107, 45, 0.8), rgba(255, 176, 122, 0));
}

html[data-theme="dark"] .ad-slot__inner {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        var(--surface);
}

.ad-slot__inner--inline {
    min-height: 170px;
    background:
        linear-gradient(135deg, rgba(255, 107, 45, 0.1), rgba(71, 133, 255, 0.05)),
        var(--surface);
}

html[data-theme="dark"] .ad-slot__inner--inline {
    background:
        linear-gradient(135deg, rgba(255, 141, 84, 0.16), rgba(125, 168, 255, 0.08)),
        var(--surface);
}

.ad-slot__label {
    margin: 0 0 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.ad-slot-inline {
    grid-column: 1 / -1;
}

.result-images > .ad-slot-inline {
    margin-top: 4px;
}

[data-lazy-ad] {
    display: block;
    width: 100%;
    min-height: 110px;
}

.ad-slot-sticky .ad-slot__inner {
    min-height: 110px;
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -18px 40px rgba(14, 19, 30, 0.16);
}

.ad-slot-sticky .ad-slot__label {
    margin-right: 68px;
}

.mobile-sticky-ad {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 0;
    z-index: 70;
}

.mobile-sticky-ad__close {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 1;
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    padding: 6px 10px;
    font: inherit;
    cursor: pointer;
}

html[data-theme="dark"] .mobile-sticky-ad__close {
    background: rgba(15, 19, 27, 0.92);
}

.extract-form {
    display: grid;
    gap: 16px;
}

.dropzone {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1.5px dashed rgba(255, 107, 45, 0.4);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.04)),
        var(--accent-soft);
    transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.dropzone.is-active {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.dropzone-copy strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.dropzone-copy p,
.dropzone small,
.progress-hint,
.result-meta,
.badge,
.blog-card-meta,
.article-meta,
.site-footer p {
    color: var(--text-soft);
}

.dropzone-actions,
.share-actions,
.results-batch-actions,
.result-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin: 24px 0 18px;
}

.hero-proof-note {
    margin: 0 0 18px;
    color: var(--text-soft);
    max-width: 52ch;
}

.btn,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover,
.text-link:hover,
.theme-toggle:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #ff8a55 100%);
    color: #fff;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-strong);
    color: var(--text);
    text-decoration: none;
}

.upload-list,
.result-images {
    display: grid;
    gap: 12px;
}

.sample-demo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 107, 45, 0.12), rgba(50, 90, 160, 0.08));
}

.sample-demo-banner p {
    margin: 6px 0 0;
    color: var(--text-soft);
}

.upload-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
}

.upload-meta strong,
.result-card h3,
.result-image-card h4,
.blog-card a,
.sidebar-links a {
    text-decoration: none;
}

.upload-meta span,
.result-meta span {
    display: block;
}

.upload-remove {
    border: none;
    background: transparent;
    color: var(--danger);
    cursor: pointer;
    font-weight: 700;
}

.progress-card,
.results-summary,
.result-card,
.callout,
.share-box {
    padding: 20px;
}

.is-hidden {
    display: none !important;
}

.progress-meta,
.result-head,
.results-summary,
.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.progress-track {
    margin-top: 12px;
    height: 12px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(18, 26, 40, 0.08);
}

.progress-track span {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent) 0%, #ffad78 100%);
    transition: width 220ms ease;
}

.loading-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-weight: 700;
}

.spinner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(16, 24, 38, 0.12);
    border-top-color: var(--accent);
    animation: spin 700ms linear infinite;
}

html[data-theme="dark"] .spinner {
    border-color: rgba(255, 255, 255, 0.16);
    border-top-color: var(--accent);
}

.toast {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: rgba(180, 35, 24, 0.08);
    color: var(--danger);
    border: 1px solid rgba(180, 35, 24, 0.22);
}

.trust-strip {
    padding: 18px 0 0;
}

.trust-strip .container {
    padding: 20px 24px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.5);
}

.trust-badges-section {
    padding-top: 36px;
}

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

.trust-badge-card {
    position: relative;
    overflow: hidden;
}

.trust-badge-card::after {
    content: "";
    position: absolute;
    inset: auto -28px -28px auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 45, 0.16), transparent 70%);
}

.trust-contact-line {
    margin: 20px 0 0;
    color: var(--text-soft);
}

.accent-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading p:last-child {
    max-width: 48ch;
    color: var(--text-soft);
}

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

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

.feature-card,
.blog-card,
.sidebar-card,
.result-card {
    padding: 22px;
}

.feature-card h3,
.blog-card h2,
.blog-card h3 {
    margin-top: 0;
}

.step-number,
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 6px 10px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.callout {
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 141, 84, 0.22), transparent 70%);
    pointer-events: none;
}

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

.hub-bucket {
    margin-top: 44px;
}

.intent-note {
    color: var(--text-soft);
    font-size: 0.95rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
    align-items: stretch;
}

.proof-gallery-controls,
.faq-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.proof-state-chip,
.faq-chip {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--text);
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
}

.proof-state-chip:hover,
.faq-chip:hover {
    transform: translateY(-1px);
}

.proof-state-chip.is-active {
    background: var(--accent);
    color: #fff;
}

.proof-gallery-grid,
.next-steps-grid {
    display: grid;
    gap: 18px;
}

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

.proof-gallery-card,
.next-step-card,
.proof-asset-link,
.author-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
}

.proof-gallery-card {
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.proof-gallery-card.is-active,
.next-step-card.is-active {
    border-color: rgba(255, 107, 45, 0.34);
    box-shadow: 0 16px 32px rgba(255, 107, 45, 0.12);
}

.proof-gallery-image {
    aspect-ratio: 16 / 10;
    background: linear-gradient(180deg, rgba(16, 24, 38, 0.08), rgba(16, 24, 38, 0.18));
}

.proof-gallery-image img,
.proof-preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.proof-gallery-copy {
    padding: 18px;
}

.proof-gallery-copy h3 {
    margin: 0 0 8px;
}

.next-steps-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.next-step-card {
    padding: 20px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.next-step-card h3 {
    margin-top: 0;
}

.next-step-card.is-active {
    transform: translateY(-2px);
    background: linear-gradient(145deg, rgba(255, 107, 45, 0.12), rgba(255, 255, 255, 0.76));
}

.proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.proof-assets-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.proof-asset-link {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
}

.proof-asset-link span,
.proof-asset-link em {
    color: var(--text-soft);
}

.proof-asset-link em {
    font-style: normal;
    font-weight: 700;
    color: var(--accent-dark);
}

.proof-preview-frame {
    margin-bottom: 12px;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.4);
}

.proof-shot,
.proof-card,
.responsive-table {
    border: 1px solid var(--border);
    background: var(--surface);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
}

.proof-shot,
.proof-card {
    padding: 22px;
}

.mock-browser-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.mock-browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0.72;
}

.proof-result-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid var(--border);
}

.proof-result-row span,
.proof-result-row em {
    min-width: 0;
    overflow-wrap: anywhere;
}

.proof-result-row em {
    color: var(--text-soft);
    font-style: normal;
}

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

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 680px;
}

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

.responsive-table th {
    color: var(--accent-dark);
    font-weight: 800;
}

.responsive-table tr:last-child td {
    border-bottom: none;
}

.article-table {
    margin: 18px 0;
}

.results-summary strong {
    font-size: 1.2rem;
}

.results-summary p {
    margin: 0;
}

.results-summary.has-errors {
    border-color: rgba(180, 35, 24, 0.22);
}

.results-grid {
    margin-top: 18px;
}

.result-card {
    display: grid;
    gap: 18px;
}

.result-status {
    margin-left: auto;
}

.status-success {
    color: var(--success);
}

.status-warning {
    color: var(--warning);
}

.status-error {
    color: var(--danger);
}

.result-images {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.result-image-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.54);
}

html[data-theme="dark"] .result-image-card,
html[data-theme="dark"] .trust-strip .container {
    background: rgba(255, 255, 255, 0.04);
}

.image-preview {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(16, 24, 38, 0.08), rgba(16, 24, 38, 0.18));
    display: grid;
    place-items: center;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.image-placeholder {
    color: var(--text-soft);
    font-weight: 700;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.image-title {
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
}

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

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    min-width: 0;
}

.actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    flex-shrink: 0;
}

.image-badge {
    margin-bottom: 0;
}

.image-badge-type {
    background: rgba(71, 133, 255, 0.14);
    color: #2753b3;
}

.image-badge-size {
    background: rgba(22, 28, 45, 0.08);
    color: var(--text-soft);
}

html[data-theme="dark"] .image-badge-type {
    background: rgba(125, 168, 255, 0.2);
    color: #dce8ff;
}

html[data-theme="dark"] .image-badge-size {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-soft);
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    text-decoration: none;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

html[data-theme="dark"] .icon-button {
    background: rgba(255, 255, 255, 0.06);
}

.icon-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(71, 133, 255, 0.28);
    box-shadow: 0 10px 18px rgba(14, 19, 30, 0.08);
}

html[data-theme="dark"] .icon-button:hover {
    background: rgba(255, 255, 255, 0.12);
}

.icon-button:focus-visible {
    outline: 2px solid rgba(71, 133, 255, 0.45);
    outline-offset: 2px;
}

.action-icon {
    font-size: 1rem;
    line-height: 1;
}

.copy-btn {
    cursor: pointer;
}

.copy-btn.is-copied {
    background: rgba(18, 113, 95, 0.12);
    border-color: rgba(18, 113, 95, 0.22);
    color: var(--success);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: var(--radius-md);
    padding: 0 20px;
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 0;
    font-weight: 700;
}

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

.faq-item p {
    margin-top: 0;
    padding-bottom: 18px;
}

.article-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
}

.article-header {
    margin-bottom: 22px;
}

.author-card {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    max-width: 48rem;
}

.author-card span,
.author-card p {
    color: var(--text-soft);
}

.author-card p {
    margin: 4px 0 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--text-soft);
    font-weight: 700;
}

.breadcrumbs a {
    color: var(--text);
    text-decoration: none;
}

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

.article-section {
    margin-top: 28px;
}

.article-section h2,
.article-section h3 {
    font-family: var(--heading-font);
    letter-spacing: -0.02em;
}

.callout-inline {
    margin-bottom: 30px;
}

.sidebar-card {
    margin-bottom: 16px;
}

.sidebar-links {
    list-style: none;
    padding-left: 0;
}

.sidebar-links li + li {
    margin-top: 10px;
}

.site-footer {
    padding: 32px 0 48px;
    border-top: 1px solid var(--border);
}

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

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .article-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .blog-card-grid,
    .hero-stats,
    .proof-grid,
    .proof-gallery-grid,
    .trust-badges-grid,
    .next-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-header {
        position: static;
    }

    .header-inner,
    .section-heading,
    .progress-meta,
    .result-head,
    .results-summary {
        flex-direction: column;
    }

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

    .hero,
    .content-section,
    .article-shell {
        padding: 52px 0;
    }

    .card-grid,
    .blog-card-grid,
    .hero-stats,
    .steps-grid,
    .proof-grid,
    .proof-gallery-grid,
    .trust-badges-grid,
    .next-steps-grid {
        grid-template-columns: 1fr;
    }

    .sample-demo-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .proof-result-row {
        grid-template-columns: 1fr;
    }

    .trust-strip .container {
        border-radius: var(--radius-lg);
    }

    .hero-ad-container {
        margin-top: 22px;
    }

    .dropzone,
    .uploader-panel,
    .feature-card,
    .blog-card,
    .result-card,
    .sidebar-card,
    .callout,
    .share-box,
    .ad-slot__inner {
        border-radius: var(--radius-md);
    }

    .image-bottom {
        gap: 10px;
    }

    .meta {
        gap: 6px;
    }

    .icon-button {
        width: 36px;
        height: 36px;
    }

    .mobile-sticky-ad:not(.is-hidden) {
        display: block;
    }

    body.has-mobile-sticky-ad {
        padding-bottom: calc(152px + env(safe-area-inset-bottom, 0px));
    }
}
