:root {
    color-scheme: light;
    --ink: #101215;
    --ink-soft: #2d3340;
    --muted: #657083;
    --line: #dce3ec;
    --panel: #ffffff;
    --paper: #f7f9fb;
    --night: #11161d;
    --night-2: #18202a;
    --night-3: #202935;
    --cyan: #28c6f4;
    --green: #4ade80;
    --coral: #ff7a66;
    --violet: #8b5cf6;
    --shadow: 0 24px 70px rgba(16, 18, 21, 0.22);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 96px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

body.account-dialog-open {
    overflow: hidden;
}

body.local-preview-mode {
    padding-top: 48px;
}

a {
    color: inherit;
}

.local-preview-banner {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    right: 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 18px;
    color: #0f172a;
    background: #fef3c7;
    border-bottom: 1px solid #f59e0b;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
}

.site-header {
    position: fixed;
    z-index: 40;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100vw - 28px));
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px 12px 18px;
    color: #ffffff;
    background: rgba(12, 16, 21, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.local-preview-mode .site-header {
    top: 62px;
}

.site-header.is-scrolled {
    background: rgba(12, 16, 21, 0.86);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 750;
    text-decoration: none;
}

.brand-domain {
    color: #2f8dff;
}

.brand-logo {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 7px;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
    filter: drop-shadow(0 0 16px rgba(37, 99, 235, 0.38));
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    outline: 0;
}

.site-nav .nav-account-link {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.site-nav .nav-account-link.is-signed-in {
    width: 42px;
    min-width: 42px;
    justify-content: center;
    padding: 0;
    border-color: rgba(47, 141, 255, 0.52);
    background: rgba(47, 141, 255, 0.13);
    color: #dbeafe;
}

.account-user-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
}

.account-user-icon::before,
.account-user-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #38bdf8, #2f8dff);
    box-shadow: 0 0 18px rgba(47, 141, 255, 0.3);
}

.account-user-icon::before {
    top: 1px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

.account-user-icon::after {
    bottom: 1px;
    width: 20px;
    height: 11px;
    border-radius: 999px 999px 5px 5px;
}

.nav-account-menu {
    position: relative;
    margin-left: 8px;
    padding-bottom: 8px;
    margin-bottom: -8px;
}

.nav-account-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 172px;
    display: none;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(12, 16, 21, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.nav-account-menu.is-signed-in:hover .nav-account-dropdown,
.nav-account-menu.is-signed-in:focus-within .nav-account-dropdown {
    display: none;
}

.nav-account-dropdown button {
    width: 100%;
    min-height: 38px;
    border: 0;
    border-radius: 6px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
}

.nav-account-dropdown button:hover,
.nav-account-dropdown button:focus-visible {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    outline: 0;
}

.account-dialog-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(6, 10, 15, 0.62);
}

.account-dialog {
    position: relative;
    width: min(430px, 100%);
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.account-dialog h2 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.12;
}

.account-dialog-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.account-dialog-close:hover,
.account-dialog-close:focus-visible {
    border-color: #cbd5e1;
    background: #eef2f7;
    outline: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.hero {
    min-height: 88svh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 132px max(24px, calc((100vw - 1120px) / 2)) 70px;
    color: #ffffff;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(5, 8, 12, 0.88) 0%, rgba(7, 12, 17, 0.74) 36%, rgba(7, 12, 17, 0.2) 74%),
        url("capturizer-hero.png");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(5, 8, 12, 0.08));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
}

.hero-logo {
    width: min(680px, 100%);
    height: auto;
    display: block;
    margin: 0 0 28px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    filter:
        drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42))
        drop-shadow(0 0 28px rgba(34, 211, 238, 0.12));
}

.page-hero {
    padding: 148px 24px 82px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(12, 17, 23, 0.96), rgba(13, 26, 34, 0.9)),
        url("capturizer-hero.png");
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 860px;
}

.page-hero p:not(.section-kicker) {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 20px;
    line-height: 1.48;
}

.eyebrow,
.section-kicker {
    margin: 0 0 14px;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    letter-spacing: 0;
}

h1 {
    max-width: 840px;
    margin: 0;
    font-size: 72px;
    line-height: 0.96;
    font-weight: 820;
}

.hero-copy {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 22px;
    line-height: 1.4;
}

.hero-actions,
.download-actions,
.support-actions,
.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions {
    margin-top: 34px;
}

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

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    font: inherit;
    font-weight: 760;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.62;
    transform: none;
}

.server-only-link {
    opacity: 0.62;
    cursor: not-allowed;
}

.button-primary {
    color: #071013;
    background: linear-gradient(135deg, var(--cyan), var(--green));
    box-shadow: 0 18px 38px rgba(40, 198, 244, 0.24);
}

.button-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-small {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
}

.section-light .button-secondary,
.section-accent .button-secondary,
.section-openai .button-secondary,
.download-grid .button-secondary,
.support-grid .button-secondary,
.contact-card .button-secondary,
.demo-card .button-secondary,
.cta-band .button-secondary {
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
}

.format-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.format-strip span {
    min-width: 56px;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 800;
}

.proof-band {
    padding: 20px 24px 18px;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.proof-grid {
    width: min(1120px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.proof-grid div {
    min-height: 104px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
}

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

.proof-grid strong {
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 16px;
}

.proof-grid span {
    color: var(--muted);
    line-height: 1.45;
}

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

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

.teaser-grid.about-audience-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.teaser-card {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 26px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 44px rgba(16, 18, 21, 0.07);
}

.teaser-card-featured {
    grid-column: span 2;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(17, 22, 29, 0.96), rgba(30, 45, 54, 0.94));
    border-color: rgba(255, 255, 255, 0.14);
}

.teaser-card h2,
.teaser-card h3,
.contact-card h2 {
    margin: 0;
}

.contact-card h2 {
    font-size: 30px;
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.teaser-card h3 {
    font-size: 25px;
    line-height: 1.16;
}

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

.teaser-card-featured p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.76);
}

.teaser-card > a:not(.button) {
    margin-top: auto;
    color: #075985;
    font-weight: 800;
    text-decoration: none;
}

.home-split,
.cta-band,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 34px;
    align-items: center;
}

.cta-band {
    padding: 34px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(16, 18, 21, 0.08);
}

.home-split p,
.cta-band p,
.contact-card p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

.compact-card {
    box-shadow: 0 16px 48px rgba(16, 18, 21, 0.08);
}

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

.contact-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 30px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(16, 18, 21, 0.08);
}

.contact-card .button {
    margin-top: auto;
}

.contact-form-card {
    min-height: auto;
}

.contact-form {
    width: 100%;
    display: grid;
    gap: 14px;
}

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

.contact-form label span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0 13px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.contact-form textarea {
    min-height: 150px;
    padding: 12px 13px;
    line-height: 1.5;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--cyan);
    outline: 3px solid rgba(40, 198, 244, 0.18);
}

.contact-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.contact-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.contact-form .button {
    margin-top: 0;
}

.contact-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.redirect-page {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(120deg, rgba(12, 17, 23, 0.96), rgba(13, 26, 34, 0.9)),
        url("capturizer-hero.png");
    background-size: cover;
    background-position: center;
}

.redirect-card {
    width: min(520px, 100%);
    padding: 32px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(12, 16, 21, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--shadow);
}

.redirect-card h1 {
    margin: 18px 0 12px;
    font-size: 38px;
    line-height: 1.05;
}

.redirect-card p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.55;
}

.section {
    padding: 88px 24px;
}

.section-inner {
    width: min(1120px, 100%);
    margin: 0 auto;
}

.section-light {
    background: var(--paper);
}

.section-dark {
    background:
        linear-gradient(180deg, var(--night), var(--night-2));
    color: #ffffff;
}

.section-accent {
    background:
        linear-gradient(135deg, #eefaf5 0%, #eef7ff 52%, #fff5f1 100%);
}

.section-demo {
    background:
        linear-gradient(135deg, #ecfdf5 0%, #f8fafc 58%, #fff7ed 100%);
}

.demo-download-ready {
    margin: 18px 0;
    padding: 18px;
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(236, 253, 245, 0.96), rgba(239, 246, 255, 0.96));
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.demo-download-ready strong {
    display: block;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.25;
}

.demo-download-ready p {
    margin: 6px 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.section-download {
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(12, 17, 23, 0.96), rgba(15, 28, 34, 0.92)),
        url("capturizer-hero.png");
    background-size: cover;
    background-position: center bottom;
}

.section-beta {
    background: #ffffff;
}

.section-openai {
    background:
        linear-gradient(135deg, #f8fafc 0%, #eff6ff 52%, #ecfeff 100%);
}

.section-support {
    background: #ffffff;
}

.section-legal {
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(17, 22, 29, 0.98), rgba(28, 36, 46, 0.96));
}

.about-grid,
.download-grid,
.support-grid,
.extractor-layout,
.roadmap-grid,
.legal-grid,
.detail-grid,
.demo-grid,
.recommended-grid,
.openai-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 52px;
    align-items: start;
}

.recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.extractor-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.compact-heading {
    max-width: 650px;
}

h2 {
    margin: 0;
    color: inherit;
    font-size: 46px;
    line-height: 1.04;
    font-weight: 810;
}

.nowrap-heading {
    white-space: nowrap;
}

.section-heading p:not(.section-kicker),
.copy-column p,
.extractor-layout p,
.download-grid p,
.support-grid p,
.roadmap-grid p,
.legal-grid p,
.detail-grid p,
.demo-grid p,
.openai-grid p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
}

.section-dark .section-heading p:not(.section-kicker) {
    color: rgba(255, 255, 255, 0.7);
}

.section-download .section-kicker,
.section-download p {
    color: rgba(255, 255, 255, 0.78);
}

.section-legal .section-kicker,
.section-legal p {
    color: rgba(255, 255, 255, 0.76);
}

.roadmap-panel,
.legal-card {
    border-radius: 8px;
    padding: 28px;
}

.roadmap-panel {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 48px rgba(16, 18, 21, 0.08);
}

.roadmap-panel h3,
.legal-card h3 {
    margin: 0 0 12px;
    font-size: 26px;
    line-height: 1.16;
}

.roadmap-panel p {
    margin: 0 0 12px;
}

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

.release-card {
    display: grid;
    gap: 14px;
    align-content: start;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(16, 18, 21, 0.06);
}

.release-card.is-current {
    border-color: rgba(40, 198, 244, 0.55);
    box-shadow: 0 18px 52px rgba(40, 198, 244, 0.14);
}

.release-card-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

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

.release-card-header span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #e8f8fe;
    color: #0d6680;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.release-card p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.55;
}

.release-card .button {
    justify-self: start;
}

.changelog-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(16, 18, 21, 0.06);
}

.changelog-item {
    display: grid;
    grid-template-columns: minmax(120px, 170px) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.changelog-item:last-child {
    border-bottom: 0;
}

.changelog-item.is-current {
    background: #f0fbff;
}

.changelog-meta {
    display: grid;
    gap: 6px;
}

.changelog-meta strong {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.changelog-meta span {
    width: fit-content;
    padding: 4px 8px;
    border-radius: 999px;
    background: #e8f8fe;
    color: #0d6680;
    font-size: 11px;
    font-weight: 820;
    text-transform: uppercase;
}

.changelog-item p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.5;
}

.changelog-item a {
    color: #0d6680;
    font-size: 14px;
    font-weight: 820;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.changelog-item a:hover {
    text-decoration: underline;
}

.archive-link {
    margin: 18px 0 0;
    font-size: 15px;
    font-weight: 800;
}

.planned-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 16px !important;
    border-radius: 6px;
    padding: 0 10px;
    color: #075985 !important;
    background: #e0f2fe;
    font-size: 13px !important;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.legal-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.legal-card h3 {
    color: #ffffff;
}

.legal-card p {
    margin: 0 0 14px;
}

.legal-card p:last-child,
.roadmap-panel p:last-child {
    margin-bottom: 0;
}

.demo-card,
.openai-card {
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    box-shadow: 0 18px 54px rgba(16, 18, 21, 0.1);
}

.demo-card h3,
.openai-card h3 {
    margin: 0 0 18px;
    color: var(--ink);
    font-size: 26px;
    line-height: 1.16;
}

.demo-card h4 {
    margin: 22px 0 14px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.2;
}

.demo-signup-card {
    display: grid;
    gap: 14px;
}

.demo-signup-card.is-download-ready {
    align-content: start;
}

.demo-signup-card.is-download-ready .demo-form-message {
    min-height: 0;
    padding: 12px 14px;
    border: 1px solid rgba(16, 185, 129, 0.24);
    border-radius: 8px;
    background: #ecfdf5;
}

.demo-flow-list {
    margin-top: 22px;
}

.demo-form {
    display: grid;
    gap: 10px;
}

.demo-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.demo-form-actions .button {
    flex: 1 1 170px;
}

.demo-auth-switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 5px;
    margin: 2px 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f7f9fb;
}

.demo-auth-switch button {
    min-height: 40px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.demo-auth-switch button.is-active {
    background: #ffffff;
    color: var(--ink);
    box-shadow: 0 6px 16px rgba(9, 14, 23, 0.08);
}

.demo-form label {
    color: var(--ink);
    font-weight: 760;
}

.demo-form input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.demo-form select {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.demo-form input:focus,
.demo-form select:focus {
    border-color: var(--cyan);
    outline: 3px solid rgba(40, 198, 244, 0.18);
}

.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fafc;
}

.check-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
    padding: 0;
}

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

.account-page-message {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.account-settings-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.account-settings-panel h2 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.2;
}

.account-signout-panel p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.signin-grid {
    display: grid;
    justify-items: center;
}

.signin-panel {
    width: min(520px, 100%);
}

.form-hint {
    margin: -2px 0 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.demo-code-form {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.demo-account-form {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.demo-code-form input {
    max-width: 180px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.demo-form-message {
    min-height: 22px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.demo-form-message.is-error {
    color: #b42318;
    font-weight: 760;
}

.demo-form-message.is-ok {
    color: #087b47;
    font-weight: 760;
}

.beta-card {
    padding: 30px;
    border-radius: 8px;
    background:
        linear-gradient(180deg, #ffffff, #f4f8fb);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.beta-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 0 18px !important;
    border-radius: 6px;
    padding: 0 10px;
    color: #065f46 !important;
    background: #dcfce7;
    font-size: 13px !important;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.detail-list {
    display: grid;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.detail-list li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.detail-list .detail-list-action {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.detail-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.smartscreen-note {
    display: grid;
    gap: 12px;
}

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

.smartscreen-gallery figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
}

.smartscreen-gallery img {
    width: 100%;
    display: block;
}

.smartscreen-gallery figcaption {
    padding: 10px 12px;
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.4;
}

.mini-steps {
    display: grid;
    gap: 12px;
    margin: 0 0 22px;
    padding-left: 24px;
    color: var(--ink-soft);
    line-height: 1.55;
}

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

.feature-card {
    min-height: 260px;
    padding: 22px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.feature-card h3,
.workflow h3 {
    margin: 20px 0 10px;
    font-size: 20px;
    line-height: 1.2;
}

.feature-card p,
.workflow p,
.faq-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.58;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: inline-block;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    position: relative;
}

.feature-icon::before,
.feature-icon::after {
    content: "";
    position: absolute;
}

.media-icon::before {
    left: 15px;
    top: 12px;
    border-left: 17px solid var(--cyan);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

.queue-icon::before,
.queue-icon::after,
.transcript-icon::before,
.article-icon::before,
.library-icon::before,
.portable-icon::before,
.book-icon::before,
.capture-icon::before,
.cloud-icon::before {
    background: linear-gradient(135deg, var(--cyan), var(--green));
}

.queue-icon::before {
    left: 11px;
    top: 14px;
    width: 26px;
    height: 5px;
    box-shadow: 0 8px 0 rgba(74, 222, 128, 0.8), 0 16px 0 rgba(255, 122, 102, 0.8);
}

.transcript-icon::before {
    left: 12px;
    top: 10px;
    width: 24px;
    height: 29px;
    border-radius: 3px;
    opacity: 0.95;
}

.transcript-icon::after {
    left: 17px;
    top: 18px;
    width: 14px;
    height: 2px;
    background: #0b1118;
    box-shadow: 0 6px 0 #0b1118, 0 12px 0 #0b1118;
}

.article-icon::before {
    left: 11px;
    top: 11px;
    width: 27px;
    height: 27px;
    border-radius: 4px;
}

.article-icon::after {
    left: 16px;
    top: 18px;
    width: 17px;
    height: 2px;
    background: #11161d;
    box-shadow: 0 6px 0 #11161d, 0 12px 0 #11161d;
}

.library-icon::before {
    left: 9px;
    top: 11px;
    width: 30px;
    height: 24px;
    border-radius: 4px;
}

.library-icon::after {
    left: 14px;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #11161d;
    box-shadow: 13px 0 0 #11161d, 0 13px 0 #11161d, 13px 13px 0 #11161d;
}

.portable-icon::before {
    left: 16px;
    top: 8px;
    width: 17px;
    height: 32px;
    border-radius: 4px;
}

.portable-icon::after {
    left: 21px;
    top: 35px;
    width: 7px;
    height: 2px;
    background: #11161d;
}

.book-icon::before {
    left: 10px;
    top: 12px;
    width: 28px;
    height: 23px;
    border-radius: 3px;
    box-shadow: inset 13px 0 0 rgba(17, 22, 29, 0.25);
}

.book-icon::after {
    left: 17px;
    top: 15px;
    width: 2px;
    height: 20px;
    background: #11161d;
    box-shadow: 6px 4px 0 -1px #11161d, 12px 4px 0 -1px #11161d;
}

.capture-icon::before {
    left: 18px;
    top: 8px;
    width: 13px;
    height: 23px;
    border-radius: 8px;
}

.capture-icon::after {
    left: 14px;
    top: 24px;
    width: 21px;
    height: 12px;
    border: 3px solid var(--green);
    border-top: 0;
    border-radius: 0 0 13px 13px;
}

.cloud-icon::before {
    left: 10px;
    top: 23px;
    width: 28px;
    height: 13px;
    border-radius: 18px;
}

.cloud-icon::after {
    left: 15px;
    top: 14px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 10px 4px 0 2px var(--green);
}

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

.workflow article {
    min-height: 230px;
    padding: 24px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 40px rgba(16, 18, 21, 0.06);
}

.workflow span {
    color: var(--coral);
    font-weight: 850;
}

.workflow h3 {
    color: var(--ink);
}

.workflow p {
    color: var(--muted);
}

.extractor-panel {
    padding: 22px;
    border: 1px solid rgba(16, 18, 21, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.job-form label,
.checks legend {
    display: block;
    margin: 0 0 8px;
    color: var(--ink);
    font-weight: 760;
}

.job-form input[type="url"] {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 16px;
    margin: 18px 0;
    padding: 0;
    border: 0;
}

.checks legend {
    grid-column: 1 / -1;
}

.checks label {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    margin: 0;
    color: var(--ink-soft);
    font-weight: 650;
}

.checks input {
    width: 18px;
    height: 18px;
    accent-color: #16a34a;
}

.capability-message,
.form-message,
.fine-print {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.form-message {
    display: inline-block;
    margin-left: 10px;
}

.progress-section {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.hidden {
    display: none !important;
}

.status-grid {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 8px 12px;
    margin-bottom: 14px;
}

.status-grid div:nth-child(odd) {
    color: var(--muted);
    font-weight: 760;
}

.bar {
    height: 14px;
    background: #dfe8f2;
    border-radius: 999px;
    overflow: hidden;
    margin: 10px 0 14px;
}

.bar span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--green), var(--coral));
    transition: width 0.25s ease;
}

.download-area,
.actions {
    margin: 12px 0;
}

pre {
    min-height: 200px;
    max-height: 340px;
    margin: 14px 0 0;
    overflow: auto;
    white-space: pre-wrap;
    word-break: break-word;
    border-radius: 8px;
    padding: 14px;
    background: #0e141b;
    color: #e7edf6;
    font-size: 13px;
    line-height: 1.48;
}

.error {
    color: #b42318;
    font-weight: 760;
}

.ok {
    color: #087b47;
    font-weight: 760;
}

.comparison-wrap {
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 16px 48px rgba(16, 18, 21, 0.08);
}

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

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

.comparison-table th {
    color: var(--ink);
    font-size: 14px;
    font-weight: 820;
    background: #f2f6fa;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
    position: sticky;
    left: 0;
    z-index: 1;
}

.comparison-table thead th:first-child {
    z-index: 2;
}

.comparison-table td {
    color: var(--ink-soft);
    font-size: 14px;
    line-height: 1.44;
}

.comparison-table td.status-yes {
    background: #dcfce7;
    color: #064e3b;
}

.comparison-table td.status-partial {
    background: #fef3c7;
    color: #713f12;
}

.comparison-table td.status-no {
    background: #fee2e2;
    color: #7f1d1d;
}

.comparison-table td strong {
    color: inherit;
}

.comparison-table sup,
.source-note sup {
    font-size: 0.75em;
    font-weight: 850;
}

.comparison-table td span {
    display: block;
    margin-top: 5px;
    color: currentColor;
    opacity: 0.76;
}

.source-note {
    margin: 18px 0 10px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.source-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.source-list a {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    border-radius: 6px;
    padding: 0 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.source-list-inline {
    margin-top: 16px;
}

.legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.legend span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 11px;
    font-size: 13px;
    font-weight: 800;
}

.legend-yes {
    background: #dcfce7;
    color: #064e3b;
}

.legend-partial {
    background: #fef3c7;
    color: #713f12;
}

.legend-no {
    background: #fee2e2;
    color: #7f1d1d;
}

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

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(16, 18, 21, 0.06);
}

.faq-list summary {
    min-height: 62px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: var(--ink);
    cursor: pointer;
    font-weight: 780;
}

.faq-list p {
    padding: 0 20px 18px;
    color: var(--muted);
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 28px max(24px, calc((100vw - 1120px) / 2));
    color: rgba(255, 255, 255, 0.72);
    background: #0e141b;
}

.site-footer p {
    margin: 0;
}

.site-footer a {
    color: #ffffff;
    font-weight: 760;
    text-decoration: none;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

@media (max-width: 1080px) {
    .feature-grid,
    .workflow,
    .proof-grid,
    .teaser-grid,
    .teaser-grid.four-up,
    .teaser-grid.about-audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-grid,
    .download-grid,
    .support-grid,
    .extractor-layout,
    .roadmap-grid,
    .legal-grid,
    .detail-grid,
    .demo-grid,
    .recommended-grid,
    .openai-grid,
    .home-split,
    .cta-band,
    .account-settings-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .teaser-card-featured {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .site-header {
        top: 10px;
        width: calc(100vw - 20px);
    }

    .local-preview-mode .site-header {
        top: 58px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        top: 70px;
        left: 10px;
        right: 10px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(12, 16, 21, 0.96);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    }

    .local-preview-mode .site-nav {
        top: 118px;
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        min-height: 46px;
        padding: 0 12px;
    }

    .nav-account-menu {
        margin-left: 0;
        margin-top: 6px;
    }

    .site-nav .nav-account-link {
        justify-content: center;
    }

    .site-nav .nav-account-link.is-signed-in {
        width: 100%;
    }

    .nav-account-dropdown {
        position: static;
        margin-top: 6px;
        box-shadow: none;
    }

    .nav-account-dropdown button {
        text-align: center;
    }

    .detail-list .detail-list-action {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .smartscreen-gallery {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 86svh;
        padding: 116px 20px 54px;
        background-position: 64% center;
    }

    .page-hero {
        padding: 118px 20px 58px;
    }

    .page-hero p:not(.section-kicker) {
        font-size: 17px;
    }

    h1 {
        font-size: 44px;
        line-height: 1;
    }

    h2 {
        font-size: 34px;
    }

    .hero-copy {
        font-size: 17px;
    }

    .section {
        padding: 68px 18px;
    }

    .feature-grid,
    .workflow,
    .proof-grid,
    .teaser-grid,
    .teaser-grid.four-up,
    .teaser-grid.about-audience-grid,
    .checks,
    .release-list {
        grid-template-columns: 1fr;
    }

    .nowrap-heading {
        white-space: normal;
    }

    .teaser-card-featured {
        grid-column: auto;
    }

    .teaser-card,
    .contact-card,
    .cta-band,
    .demo-card,
    .openai-card,
    .beta-card,
    .release-card {
        padding: 22px;
    }

    .changelog-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
    }

    .changelog-item a {
        white-space: normal;
    }

    .feature-card,
    .workflow article,
    .teaser-card,
    .contact-card {
        min-height: auto;
    }

    .extractor-panel {
        padding: 18px;
    }

    .form-message {
        display: block;
        margin: 10px 0 0;
    }

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

    .site-footer {
        flex-direction: column;
    }

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
