.screeners-intro,
.screeners-reading,
.screeners-content,
.screeners-final-cta {
    --screeners-blue: #0E8BEC;
    --screeners-cyan: #00C4FF;
    --screeners-accent: #E8A33D;
    --screeners-accent-hover: #D99024;
    --screeners-ink: #0F172A;
    --screeners-copy: #475569;
    --screeners-muted: #64748B;
    --screeners-line: #E2E8F0;
    --screeners-surface: #FFFFFF;
    --screeners-soft: #F8FAFC;
    font-family: "Inter", sans-serif;
    letter-spacing: 0;
}

.screeners-intro *,
.screeners-reading *,
.screeners-content *,
.screeners-final-cta * {
    box-sizing: border-box;
}

.screeners-intro {
    border-bottom: 1px solid var(--screeners-line);
    background: var(--screeners-soft);
    color: var(--screeners-ink);
}

.screeners-intro__inner {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
    padding: 38px 0 42px;
}

.screeners-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px;
    color: var(--screeners-muted);
    font-size: 12px;
    font-weight: 500;
}

.screeners-breadcrumb a {
    color: var(--screeners-copy);
    text-decoration: none;
}

.screeners-breadcrumb a:hover {
    color: var(--screeners-blue);
}

.screeners-breadcrumb__current {
    color: #A85F08;
}

.screeners-intro__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: end;
}

.screeners-intro h1 {
    max-width: 900px;
    margin: 0;
    color: var(--screeners-ink);
    font-size: clamp(30px, 3.3vw, 48px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.screeners-intro__lead {
    max-width: 820px;
    margin: 16px 0 0;
    color: var(--screeners-copy);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
}

.screeners-intro__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.screeners-intro__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    background: #FFFFFF;
    color: #334155;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.screeners-intro__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
    color: #047857;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
}

.screeners-intro__status::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    content: "";
}

.screeners-reading {
    width: min(100% - 24px, 1200px);
    margin: 58px auto 0;
    padding: 0;
    color: var(--screeners-ink);
}

.screeners-reading__head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}

.screeners-reading__eyebrow,
.screeners-section__eyebrow {
    margin: 0 0 7px;
    color: #A85F08;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
}

.screeners-reading h2,
.screeners-section h2,
.screeners-final-cta h2 {
    margin: 0;
    color: var(--screeners-ink);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0;
}

.screeners-reading__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #075EAD;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.screeners-reading__all:hover {
    color: var(--screeners-blue);
}

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

.screeners-article {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--screeners-line);
    border-radius: 8px;
    background: var(--screeners-surface);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.screeners-article:hover {
    border-color: #B8C7D9;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.screeners-article > a {
    display: flex;
    height: 100%;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
}

.screeners-article__media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--screeners-line);
    background: #E2E8F0;
}

.screeners-article__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.screeners-article:hover .screeners-article__media img {
    transform: scale(1.025);
}

.screeners-article__body {
    display: flex;
    min-height: 154px;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.screeners-article__label {
    margin-bottom: 8px;
    color: #A85F08;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.screeners-article h3 {
    margin: 0;
    color: var(--screeners-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0;
}

.screeners-article p {
    display: -webkit-box;
    margin: 10px 0 0;
    overflow: hidden;
    color: var(--screeners-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.screeners-content {
    margin-top: 64px;
    color: var(--screeners-ink);
}

.screeners-section {
    padding: 76px 0;
    border-top: 1px solid var(--screeners-line);
    background: var(--screeners-surface);
}

.screeners-section--soft {
    background: var(--screeners-soft);
}

.screeners-section__inner {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
}

.screeners-section__intro {
    max-width: 780px;
    margin-bottom: 38px;
}

.screeners-section__intro > p,
.screeners-copy p {
    margin: 16px 0 0;
    color: var(--screeners-copy);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.screeners-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 56px;
    align-items: start;
}

.screeners-summary {
    border-left: 3px solid var(--screeners-accent);
    padding: 4px 0 4px 24px;
}

.screeners-summary h3 {
    margin: 0 0 14px;
    color: var(--screeners-ink);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
}

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

.screeners-checklist li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.screeners-checklist i {
    margin-top: 3px;
    color: #0F8F68;
}

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

.screeners-event {
    min-width: 0;
    padding: 24px 22px;
    border: 1px solid var(--screeners-line);
    border-radius: 8px;
    background: var(--screeners-surface);
}

.screeners-event__code {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 5px 8px;
    border-radius: 5px;
    background: #EFF6FF;
    color: #075EAD;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
}

.screeners-event h3,
.screeners-feature h3,
.screeners-flow__item h3 {
    margin: 0;
    color: var(--screeners-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.screeners-event p,
.screeners-feature p,
.screeners-flow__item p {
    margin: 10px 0 0;
    color: var(--screeners-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
}

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

.screeners-copy h3 {
    margin: 32px 0 0;
    color: var(--screeners-ink);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0;
}

.screeners-copy h3:first-child {
    margin-top: 0;
}

.screeners-copy ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 20px;
}

.screeners-copy li {
    padding-left: 3px;
    color: var(--screeners-copy);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
}

.screeners-note {
    margin-top: 24px;
    padding: 18px 20px;
    border: 1px solid #F2D3A2;
    border-radius: 8px;
    background: #FFF8ED;
    color: #713F12;
    font-size: 14px;
    line-height: 1.65;
}

.screeners-flow {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 38px;
    border: 1px solid var(--screeners-line);
    border-radius: 8px;
    background: var(--screeners-surface);
}

.screeners-flow__item {
    position: relative;
    padding: 28px;
}

.screeners-flow__item + .screeners-flow__item {
    border-left: 1px solid var(--screeners-line);
}

.screeners-flow__number {
    display: block;
    margin-bottom: 16px;
    color: var(--screeners-blue);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
}

.screeners-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 44px;
    margin-top: 38px;
}

.screeners-feature {
    min-width: 0;
    padding-top: 17px;
    border-top: 2px solid #CBD5E1;
}

.screeners-faq {
    max-width: 820px;
    margin-top: 34px;
    border-top: 1px solid var(--screeners-line);
}

.screeners-faq details {
    border-bottom: 1px solid var(--screeners-line);
}

.screeners-faq summary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    padding: 20px 2px;
    color: var(--screeners-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    list-style: none;
}

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

.screeners-faq summary::after {
    color: var(--screeners-muted);
    font-size: 20px;
    font-weight: 400;
    content: "+";
}

.screeners-faq details[open] summary::after {
    content: "−";
}

.screeners-faq__answer {
    padding: 0 34px 20px 2px;
    color: var(--screeners-copy);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

.screeners-final-cta {
    padding: 76px 20px;
    border-top: 1px solid var(--screeners-line);
    background: #FFFFFF;
    color: var(--screeners-ink);
    text-align: center;
}

.screeners-final-cta__inner {
    max-width: 690px;
    margin: 0 auto;
}

.screeners-final-cta p {
    margin: 16px auto 26px;
    color: var(--screeners-copy);
    font-size: 16px;
    line-height: 1.7;
}

.screeners-final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.screeners-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.screeners-action--primary {
    background: var(--screeners-accent);
    color: #17110A;
}

.screeners-action--primary:hover {
    background: var(--screeners-accent-hover);
    color: #17110A;
}

.screeners-action--secondary {
    border-color: #CBD5E1;
    background: #FFFFFF;
    color: #334155;
}

.screeners-action--secondary:hover {
    border-color: #94A3B8;
    color: var(--screeners-ink);
}

.screeners-final-cta__risk {
    margin-top: 18px;
    color: var(--screeners-muted);
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .screeners-reading__grid,
    .screeners-event-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .screeners-intro__layout,
    .screeners-lead-grid,
    .screeners-detail-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .screeners-intro__status {
        display: none;
    }

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

@media (max-width: 700px) {
    .screeners-intro__inner,
    .screeners-section__inner {
        width: min(100% - 28px, 1120px);
    }

    .screeners-intro__inner {
        padding: 28px 0 32px;
    }

    .screeners-intro h1 {
        font-size: 29px;
    }

    .screeners-intro__lead {
        font-size: 14px;
    }

    .screeners-intro__tags {
        gap: 6px;
    }

    .screeners-intro__tag {
        font-size: 10px;
    }

    .screeners-reading {
        width: min(100% - 28px, 1200px);
        margin-top: 46px;
    }

    .screeners-reading__head {
        align-items: start;
        flex-direction: column;
    }

    .screeners-event-grid,
    .screeners-feature-grid,
    .screeners-flow {
        grid-template-columns: minmax(0, 1fr);
    }

    .screeners-reading__grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 0 0 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .screeners-reading__grid::-webkit-scrollbar {
        display: none;
    }

    .screeners-article {
        width: min(76vw, 300px);
        min-width: min(76vw, 300px);
        scroll-snap-align: start;
    }

    .screeners-section {
        padding: 58px 0;
    }

    .screeners-flow__item + .screeners-flow__item {
        border-top: 1px solid var(--screeners-line);
        border-left: 0;
    }

    .screeners-final-cta {
        padding: 60px 18px;
    }

    .screeners-final-cta__actions {
        align-items: stretch;
        flex-direction: column;
    }
}
