﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #0F0F0F;
    --paper: white;
    --white: #ffffff;
    --orange: #F04E23;
    --orange-light: #FFF0EB;
    --orange-dark: #C93D15;
    --mid: #6B6460;
    --rule: #E4E0D8;
    --card-bg: #FFFFFF;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Epilogue', sans-serif;
    --radius: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    overflow-x: hidden;
}

/* ─── MASTHEAD NAV ─── */
.masthead {
    border-bottom: 1px solid var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
}

.masthead-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
}

.logo {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 28px;
    letter-spacing: -1px;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-dot {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--mid);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: color .2s;
    }

        .nav-links a:hover {
            color: var(--ink);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-link {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s;
}

    .btn-link:hover {
        color: var(--ink);
    }

.btn-cta {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--sans);
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.2px;
}

    .btn-cta:hover {
        background: var(--orange-dark);
        transform: translateY(-1px);
    }

.masthead-rule {
    height: 3px;
    background: repeating-linear-gradient(90deg, var(--ink) 0, var(--ink) 6px, transparent 6px, transparent 10px);
    opacity: .08;
}

/* ─── HERO ─── */
.hero-wrap {
    border-bottom: 1px solid var(--rule);
    overflow: hidden;
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px 0;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: end;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 24px;
}

.hero-kicker-line {
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 900;
    line-height: .95;
    letter-spacing: -3px;
    color: var(--ink);
    margin-bottom: 28px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--orange);
    }

.hero-deck {
    font-size: 18px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 520px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero {
    background: var(--ink);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--sans);
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.2px;
}

    .btn-hero:hover {
        background: #2a2a2a;
        transform: translateY(-2px);
    }

.hero-sub-link {
    font-size: 14px;
    color: var(--mid);
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: color .2s;
}

    .hero-sub-link:hover {
        color: var(--ink);
    }

.hero-byline {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    font-size: 12px;
    color: var(--mid);
}

.hero-byline-stat strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
    display: block;
    margin-bottom: 2px;
}

.hero-byline-divider {
    width: 1px;
    height: 32px;
    background: var(--rule);
}

/* ─── EXTENSION MOCKUP ─── */
.ext-mockup-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0;
}

.ext-shadow-base {
    width: 100%;
    max-width: 340px;
    background: var(--white);
    border-radius: 18px 18px 0 0;
    border: 1.5px solid var(--rule);
    border-bottom: none;
    box-shadow: 0 -8px 48px rgba(0,0,0,.12), 0 0 0 1px rgba(0,0,0,.04);
    overflow: hidden;
    animation: riseUp 1s cubic-bezier(.16,1,.3,1) both;
    animation-delay: .3s;
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* Extension header */
.ext-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--rule);
}

.ext-header-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.ext-header-name {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    flex: 1;
    text-align: center;
}

.ext-header-icon-right {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #F5F3EF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    color: var(--mid);
}

/* Articles count bar */
.ext-count-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
}

.ext-clear-btn {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    font-family: var(--sans);
    cursor: pointer;
}

/* Article cards */
.ext-article {
    margin: 0 10px 10px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--rule);
    background: #1A1A1A;
    cursor: pointer;
    transition: transform .2s;
}

    .ext-article:hover {
        transform: scale(1.01);
    }

.ext-article-img {
    width: 100%;
    aspect-ratio: 16/8;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

    .ext-article-img.tech {
        background: linear-gradient(135deg,#1A2744,#2C4A7C);
    }

    .ext-article-img.world {
        background: linear-gradient(135deg,#1A3028,#2D5A44);
    }

.ext-article-source-pill {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--orange);
    color: white;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
}

.ext-article-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    border: none;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.ext-article-body {
    padding: 10px 12px 12px;
    background: white;
}

.ext-article-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 4px;
}

.ext-article-title-rtl {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--ink);
    direction: rtl;
    text-align: right;
    margin-bottom: 4px;
}

.ext-article-domain {
    font-size: 10px;
    color: var(--mid);
}

/* Extension bottom nav */
.ext-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 12px 16px 18px;
    border-top: 1px solid var(--rule);
    position: relative;
}

.ext-nav-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #F5F3EF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    color: var(--mid);
    position: relative;
}

    .ext-nav-icon.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 2px;
        background: var(--orange);
        border-radius: 2px;
    }

.ext-nav-fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 16px rgba(240,78,35,.4);
    transition: transform .2s, box-shadow .2s;
}

    .ext-nav-fab:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 24px rgba(240,78,35,.5);
    }

/* ─── TICKER ─── */
.ticker {
    background: var(--ink);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    border-bottom: 3px solid var(--orange);
}

.ticker-inner {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker 28s linear infinite;
}

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,.7);
}

    .ticker-item::before {
        content: '●';
        color: var(--orange);
        font-size: 8px;
    }

/* ─── BROWSER SUPPORT STRIP ─── */
.browser-strip {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0;
}

.browser-strip-label {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    padding: 0 32px 0 48px;
    white-space: nowrap;
    border-right: 1px solid var(--rule);
    margin-right: 0;
}

.browser-strip-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

    .browser-strip-track-wrap::before,
    .browser-strip-track-wrap::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 60px;
        z-index: 2;
        pointer-events: none;
    }

    .browser-strip-track-wrap::before {
        left: 0;
        background: linear-gradient(to right, var(--paper), transparent);
    }

    .browser-strip-track-wrap::after {
        right: 0;
        background: linear-gradient(to left, var(--paper), transparent);
    }

.browser-strip-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: browserScroll 22s linear infinite;
    width: max-content;
}

    .browser-strip-track:hover {
        animation-play-state: paused;
    }

@keyframes browserScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.browser-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    border-right: 1px solid var(--rule);
    transition: background .2s;
    cursor: default;
}

    .browser-chip:hover {
        background: var(--orange-light);
    }

    .browser-chip svg {
        flex-shrink: 0;
    }

/* ─── SECTION BASE ─── */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 48px;
}

.section-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-kicker::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--rule);
        max-width: 120px;
    }

.section-headline {
    font-family: var(--serif);
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-deck {
    font-size: 17px;
    line-height: 1.7;
    color: var(--mid);
    max-width: 540px;
    font-weight: 300;
    margin-bottom: 60px;
}

/* ─── HOW IT WORKS GRAPHIC ─── */
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hiw-arrow {
    font-size: 28px;
    color: var(--rule);
    font-weight: 300;
    padding: 0 12px;
    margin-top: -32px;
}

.hiw-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hiw-label {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    color: var(--ink);
}

/* Mini browser frame */
.hiw-browser {
    width: 100%;
    max-width: 260px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--rule);
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    overflow: hidden;
}

.hiw-browser-bar {
    background: #F0EEE8;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid var(--rule);
}

.hiw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hiw-url {
    flex: 1;
    background: white;
    border-radius: 3px;
    padding: 3px 7px;
    font-size: 9px;
    color: var(--mid);
    margin-left: 4px;
    overflow: hidden;
    white-space: nowrap;
}

.hiw-ext-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.hiw-ext-active {
    box-shadow: 0 0 0 2px var(--orange);
    border-radius: 4px;
}

.hiw-page-body {
    padding: 10px;
}

.hiw-article-img {
    height: 52px;
    margin-bottom: 8px;
    border-radius: 4px;
    overflow: hidden;
}

.hiw-article-title-line {
    height: 8px;
    background: var(--ink);
    border-radius: 3px;
    margin-bottom: 5px;
    opacity: .12;
}

    .hiw-article-title-line.long {
        width: 100%;
    }

    .hiw-article-title-line.med {
        width: 70%;
    }

.hiw-article-body-line {
    height: 6px;
    background: var(--mid);
    border-radius: 3px;
    margin-bottom: 4px;
    opacity: .12;
}

    .hiw-article-body-line.long {
        width: 100%;
    }

    .hiw-article-body-line.med {
        width: 80%;
    }

/* Popup overlay inside step 2 */
.hiw-popup {
    position: absolute;
    top: 36px;
    right: -8px;
    width: 130px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--rule);
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    padding: 8px;
    z-index: 10;
    animation: popIn .4s cubic-bezier(.16,1,.3,1) both;
    animation-delay: .2s;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(.85) translateY(-8px);
    }

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

.hiw-popup-header {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 11px;
    color: var(--orange);
    margin-bottom: 7px;
    padding-bottom: 7px;
    border-bottom: 1px solid var(--rule);
}

.hiw-popup-article {
    display: flex;
    gap: 6px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.hiw-popup-thumb {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.hiw-popup-btn {
    background: var(--orange);
    color: white;
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 8px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
    cursor: pointer;
}

.hiw-popup-btn-ghost {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 5px;
    padding: 5px 8px;
    font-size: 8px;
    font-weight: 600;
    color: var(--mid);
    text-align: center;
    cursor: pointer;
}

@media (max-width: 900px) {
    .hiw-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hiw-arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }

    .hiw-browser {
        max-width: 320px;
    }
}

/* ─── VIDEO LIST REMOVE BUTTON ─── */
.video-list-remove {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--rule);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--mid);
    cursor: pointer;
    margin-right: 10px;
    transition: background .2s, color .2s, border-color .2s;
    align-self: center;
}

    .video-list-remove:hover {
        background: #FFE0D9;
        color: var(--orange);
        border-color: var(--orange);
    }

/* ─── FEATURE SPLIT ─── */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid var(--rule);
}

    .feature-split.flip {
        direction: rtl;
    }

        .feature-split.flip > * {
            direction: ltr;
        }

.feat-tag {
    display: inline-block;
    border: 1px solid var(--orange);
    color: var(--orange);
    border-radius: 3px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.feat-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.feat-body {
    font-size: 16px;
    line-height: 1.75;
    color: var(--mid);
    font-weight: 300;
    margin-bottom: 28px;
}

.feat-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .feat-checks li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
    }

.check-mark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    background: var(--orange);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-top: 2px;
}

/* Feature visual panels */
.feat-panel {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
}

.feat-panel-head {
    background: var(--ink);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feat-panel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.feat-panel-url {
    flex: 1;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    padding: 5px 12px;
    font-size: 11px;
    color: rgba(255,255,255,.5);
    margin-left: 8px;
}

/* Video report card */
.video-report-card {
    padding: 20px 20px 0;
}

.video-report-article-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--rule);
}

.video-report-thumb {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    flex-shrink: 0;
    overflow: hidden;
}

    .video-report-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.summary-source {
    font-size: 10px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.summary-atitle {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}

.summary-reading {
    font-size: 11px;
    color: var(--mid);
}

/* Video player mock */
.video-player-mock {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #0F0F1A;
    margin-bottom: 16px;
}

    .video-player-mock img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .55;
    }

.video-overlay-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.video-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(240,78,35,.25);
    cursor: pointer;
}

    .video-play-btn svg {
        margin-left: 3px;
    }

.video-duration {
    font-size: 11px;
    color: rgba(255,255,255,.7);
    font-weight: 600;
    letter-spacing: 1px;
}

.video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.15);
}

.video-progress-fill {
    height: 100%;
    width: 35%;
    background: var(--orange);
    border-radius: 2px;
    animation: progressAnim 8s linear infinite;
}

@keyframes progressAnim {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.video-source-label {
    position: absolute;
    bottom: 8px;
    left: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    opacity: .7;
}

.video-report-label {
    padding: 0 4px 16px;
    font-size: 11px;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .video-report-label span {
        font-weight: 600;
        color: var(--orange);
    }

/* Video list panel */
.video-list {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-list-item {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    gap: 0;
    cursor: pointer;
    transition: border-color .2s, transform .2s;
}

    .video-list-item:hover {
        border-color: var(--orange);
        transform: translateX(3px);
    }

.video-list-thumb {
    width: 80px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

    .video-list-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.video-list-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-list-play {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .video-list-play svg {
        margin-left: 2px;
    }

.video-list-info {
    padding: 10px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-list-source {
    font-size: 9px;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.video-list-title {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 4px;
}

.video-list-meta {
    font-size: 10px;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 6px;
}

.video-ready-badge {
    background: #D1FAE5;
    color: #059669;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sources-divider {
    padding: 12px 20px 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    border-top: 1px solid var(--rule);
}

.rtl-row {
    direction: rtl;
}

/* ─── BEFORE / AFTER ─── */
.compare-section {
    background: var(--ink);
    padding: 100px 48px;
}

.compare-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.compare-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
}

.compare-headline {
    font-family: var(--serif);
    font-size: clamp(36px,4.5vw,60px);
    font-weight: 900;
    letter-spacing: -2px;
    color: white;
    line-height: 1.0;
    margin-bottom: 60px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.compare-card {
    border-radius: 16px;
    overflow: hidden;
}

.compare-card-head {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.compare-card.before .compare-card-head {
    background: #1E1E1E;
}

.compare-card.after .compare-card-head {
    background: var(--orange);
}

.compare-card-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}

.compare-card-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.compare-card-body {
    background: #161616;
    padding: 24px;
}

.compare-card.after .compare-card-body {
    background: #1A0A05;
}

.fake-article-line {
    height: 10px;
    background: rgba(255,255,255,.08);
    border-radius: 4px;
    margin-bottom: 8px;
}

    .fake-article-line.short {
        width: 60%;
    }

    .fake-article-line.med {
        width: 80%;
    }

    .fake-article-line.long {
        width: 100%;
    }

.fa-img {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    background: rgba(255,255,255,.05);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.fa-time {
    font-size: 11px;
    color: rgba(255,255,255,.3);
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.fa-time-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.08);
    border-radius: 2px;
}

/* After card video mock */
.compare-video-mock {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #0D0D1A;
    margin-bottom: 14px;
}

    .compare-video-mock img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .45;
    }

.compare-video-play-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.compare-video-play-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 10px rgba(240,78,35,.2);
}

.compare-video-headline {
    position: absolute;
    bottom: 36px;
    left: 12px;
    right: 12px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0,0,0,.8);
}

.compare-video-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,.15);
}

.compare-video-fill {
    height: 100%;
    width: 30%;
    background: var(--orange);
    animation: progressAnim 6s linear infinite;
}

.compare-video-time {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 10px;
    color: rgba(255,255,255,.7);
    font-weight: 600;
}

.fa-time-after {
    font-size: 11px;
    color: rgba(240,78,35,.9);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
}

/* ─── TESTIMONIALS ─── */
.testimonial-strip {
    border-top: 1px solid var(--rule);
    padding: 80px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform .3s, box-shadow .3s;
}

    .testimonial-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 40px rgba(0,0,0,.08);
    }

.t-quote {
    font-family: var(--serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: var(--ink);
    margin-bottom: 20px;
}

    .t-quote::before {
        content: '\201C';
        color: var(--orange);
        font-size: 28px;
        line-height: 0;
        vertical-align: -8px;
        margin-right: 4px;
    }

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: var(--paper);
    flex-shrink: 0;
}

.t-name {
    font-size: 14px;
    font-weight: 600;
}

.t-role {
    font-size: 12px;
    color: var(--mid);
}

/* ─── CTA BAND ─── */
.cta-band {
    background: var(--orange);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-band::before {
        content: 'Pressly';
        font-family: var(--serif);
        font-size: 220px;
        font-weight: 900;
        color: rgba(255,255,255,.06);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        white-space: nowrap;
        pointer-events: none;
        letter-spacing: -8px;
    }

    .cta-band h2 {
        font-family: var(--serif);
        font-size: clamp(36px,5vw,72px);
        font-weight: 900;
        letter-spacing: -2.5px;
        color: white;
        margin-bottom: 20px;
        line-height: 1.0;
        position: relative;
    }

    .cta-band p {
        font-size: 17px;
        color: rgba(255,255,255,.8);
        margin-bottom: 36px;
        font-weight: 300;
        position: relative;
    }

.btn-cta-white {
    background: white;
    color: var(--orange);
    border: none;
    border-radius: 6px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--sans);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s, box-shadow .2s;
    position: relative;
}

    .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0,0,0,.2);
    }

.cta-fine {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    position: relative;
}

/* ─── FOOTER ─── */
footer {
    background: var(--ink);
    color: rgba(255,255,255,.5);
    padding: 64px 48px 40px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-family: var(--serif);
    font-weight: 900;
    font-size: 28px;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

    .footer-logo span {
        color: var(--orange);
    }

.footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.35);
    max-width: 240px;
    font-weight: 300;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.3);
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-col-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .footer-col-links a {
        text-decoration: none;
        font-size: 14px;
        color: rgba(255,255,255,.4);
        font-weight: 400;
        transition: color .2s;
    }

        .footer-col-links a:hover {
            color: white;
        }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
}

    .footer-bottom a {
        color: rgba(255,255,255,.35);
        text-decoration: none;
        transition: color .2s;
    }

        .footer-bottom a:hover {
            color: white;
        }

/* ─── SCROLL ANIMATION ─── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s, transform .75s;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .masthead-top {
        padding: 0 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 80px 24px 40px;
        gap: 40px;
    }

    .ext-mockup-wrap {
        justify-content: flex-start;
    }

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

    .feature-split {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px;
    }

        .feature-split.flip {
            direction: ltr;
        }

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

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 60px 24px;
    }

    .ticker {
        display: none;
    }
}
