:root {
    --rfu-radius: 6px;
    --rfu-canvas: #f4f3ef;
    --rfu-surface: #ffffff;
    --rfu-surface-raised: #faf9f6;
    --rfu-surface-sunken: #e8e6e0;
    --rfu-text: #1a1d24;
    --rfu-text-secondary: #4a5262;
    --rfu-text-muted: #6e7583;
    --rfu-border: rgba(26, 29, 36, 0.12);
    --rfu-border-strong: rgba(26, 29, 36, 0.2);
    --rfu-accent: #e04a00;
    --rfu-accent-soft: rgba(224, 74, 0, 0.1);
    --rfu-link: #c24100;
    --rfu-link-hover: #e04a00;
    --rfu-on-accent: #ffffff;
    --primary: var(--rfu-text);
    --accent: var(--rfu-accent);
    --accent-soft: var(--rfu-accent-soft);
    --bg: var(--rfu-canvas);
    --surface: var(--rfu-surface);
    --surface-2: var(--rfu-surface-raised);
    --subtle: var(--rfu-text-secondary);
    --border: var(--rfu-border);
    --shadow: 0 1px 2px rgba(26, 29, 36, 0.05), 0 8px 24px rgba(26, 29, 36, 0.04);
    --footer-bg: var(--rfu-surface-sunken);
    --chip-bg: rgba(26, 29, 36, 0.05);
    --nav-bg: var(--rfu-surface);
    --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --gutter: clamp(20px, 4vw, 56px);
    --page-pad-left: calc(var(--gutter) + env(safe-area-inset-left, 0px));
    --page-pad-right: calc(var(--gutter) + env(safe-area-inset-right, 0px));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 5.5rem; color-scheme: light; }
img, video { max-width: 100%; height: auto; }
body { 
    font-family: var(--font);
    background: var(--bg);
    background-image: none;
    color: var(--primary);
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-wrap: break-word;
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
    outline: 2px solid rgba(255,84,0,0.65);
    outline-offset: 3px;
    border-radius: 12px;
}

.announcement-bar {
    background: var(--footer-bg);
    color: var(--primary);
    padding: 8px 0;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.announcement-bar a { color: var(--accent); text-decoration: none; font-weight: 700; }

.preview-bar {
    background: var(--footer-bg);
    color: var(--subtle);
    padding: 8px var(--page-pad-right) 8px var(--page-pad-left);
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.preview-bar a {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 17px;
    border-radius: 11px;
    font-weight: 600;
    letter-spacing: 0;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--rfu-on-accent); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-secondary { background: var(--chip-bg); color: var(--primary); border-color: var(--border); }
.btn-secondary:hover { border-color: rgba(255,84,0,0.35); }


@media (hover: hover) and (pointer: fine) and (min-width: 993px) {
    .btn-primary:hover,
    .btn-secondary:hover { transform: translateY(-1px); }
}

.hero {
    position: relative;
    padding: clamp(56px, 10vh, 112px) var(--page-pad-right) clamp(48px, 7vh, 88px) var(--page-pad-left);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: clamp(28px, 4vw, 64px);
    max-width: 1400px;
    margin: 0 auto;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 15% 45%, var(--accent-soft), transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.hero-content,
.hero-stats {
    min-width: 0;
    position: relative;
    z-index: 1;
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.hero-title {
    font-size: clamp(2.05rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-wrap: balance;
    hyphens: auto;
    -webkit-hyphens: auto;
}
.hero-title .accent {
    color: var(--accent);
}
.hero-lead {
    font-size: 1.0625rem;
    color: var(--subtle);
    max-width: 34rem;
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.55;
}
.hero-sub {
    font-size: 0.9375rem;
    color: var(--subtle);
    max-width: 32rem;
    margin-bottom: 26px;
    font-style: normal;
    line-height: 1.55;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: var(--subtle);
    font-weight: 500;
    font-size: 13px;
}
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 8px;
    background: var(--chip-bg);
    border: 1px solid var(--border);
}

.hero-stats {
    display: grid;
    gap: 20px;
}
.stat-box {
    background: var(--surface);
    padding: 20px 22px;
    border-radius: var(--rfu-radius);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    box-shadow: var(--shadow);
}
.stat-box .val {
    font-size: clamp(1.85rem, 5vw, 2.35rem);
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: var(--primary);
    display: block;
    letter-spacing: -0.03em;
}
.stat-box .label { color: var(--subtle); font-size: 12px; font-weight: 500; letter-spacing: 0.02em; margin-top: 6px; display: block; }
.stat-box .hint { margin-top: 10px; color: var(--subtle); font-size: 11px; font-weight: 400; line-height: 1.35; }
.stat-box .hint a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

.inline-link {
    color: var(--rfu-link);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.feature .inline-link {
    font-weight: 700;
}

.video-section {
    padding: clamp(36px, 6vw, 52px) var(--page-pad-right) clamp(36px, 6vw, 52px) var(--page-pad-left);
    background: var(--surface);
    border-radius: clamp(28px, 5vw, 48px) clamp(28px, 5vw, 48px) 0 0;
    border-top: 1px solid var(--border);
}
.section-kicker {
    color: var(--accent);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.video-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.video-title {
    margin: 0;
    font-family: inherit;
    font-weight: 600;
    font-size: clamp(1.2rem, 3.8vw, 1.625rem);
    letter-spacing: -0.015em;
    line-height: 1.35;
    max-width: 42rem;
}
.video-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.video-main {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--rfu-radius, 6px);
    overflow: hidden;
    box-shadow: none;
    background: #000;
    border: 1px solid var(--border);
}
#main-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}
.skeleton {
    position: relative;
    overflow: hidden;
}
.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(26, 29, 36, 0.06), transparent);
    animation: shimmer 1.2s infinite;
}
@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.feed-container { padding: clamp(64px, 8vw, 88px) var(--page-pad-right) clamp(64px, 8vw, 88px) var(--page-pad-left); max-width: 1400px; margin: 0 auto; }
.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 288px), 1fr));
    gap: clamp(18px, 4vw, 30px);
    margin-top: clamp(28px, 5vw, 50px);
}
.video-card {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.video-card .thumb-placeholder {
    aspect-ratio: 16/9;
    background: rgba(26, 29, 36, 0.05);
    border-radius: var(--rfu-radius, 6px);
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
}
.video-card .thumb-placeholder img { width:100%; height:100%; object-fit:cover; display:block; }
.video-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
    color: var(--subtle);
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(148,163,184,0.8); }
.video-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.35; letter-spacing: -0.02em; overflow-wrap: anywhere; word-break: break-word; }
.video-card p { font-size: 14px; color: var(--subtle); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

footer > * {
    min-width: 0;
}
footer.footer--two {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr);
}
footer {
    background: var(--footer-bg);
    color: var(--primary);
    padding: clamp(48px, 10vw, 80px) var(--page-pad-right) clamp(40px, 8vw, 64px) var(--page-pad-left);
    padding-bottom: calc(clamp(40px, 8vw, 64px) + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 5vw, 50px);
    overflow: visible;
}
.footer-brand h2 {
    font-family: inherit;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 10px;
    letter-spacing: 0;
}
.footer-links h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rfu-text-muted);
    margin-bottom: 12px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: var(--subtle); text-decoration: none; font-size: 14px; opacity: 1; transition: 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--accent); }
.footer-links.footer-thanks-block .footer-thanks-chip {
    opacity: 1;
    color: var(--primary);
}

.founder-wrap {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(28px, 5vw, 44px);
    padding-top: clamp(16px, 3vw, 28px);
    padding-left: var(--page-pad-left);
    padding-right: var(--page-pad-right);
    box-sizing: border-box;
    width: 100%;
}
.founder-note {
    max-width: 42rem;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: clamp(18px, 3.5vw, 26px) clamp(20px, 3.5vw, 28px);
    border-radius: var(--rfu-radius, 6px);
    display: block;
    text-align: left;
    box-shadow: var(--shadow);
}

.founder-note a,
.allstar-strip p a {
    color: var(--rfu-link);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.video-section-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.footer-tagline {
    opacity: 0.65;
    font-size: 14px;
    font-weight: 400;
}

.footer-tagline a {
    color: inherit;
    font-weight: 600;
    text-underline-offset: 2px;
}

.footer-github {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    color: var(--subtle);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    opacity: 0.72;
    transition: opacity 0.3s, color 0.3s;
}
.footer-github:hover {
    opacity: 1;
    color: var(--accent);
}
.footer-github i {
    font-size: 1.35rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .hero { grid-template-columns: 1fr; text-align: center; padding-top: clamp(44px, 10vw, 60px); }
    .hero-lead,
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-sub { margin-bottom: 32px; }
    .hero-actions { justify-content: center; }
    .trust-row { justify-content: center; }
    .features { grid-template-columns: 1fr; }
    .cta-slab { flex-direction: column; text-align: center; align-items: stretch; gap: 20px; }
    .cta-slab .cta-actions { width: 100%; justify-content: center; }
    footer { grid-template-columns: 1fr; }
    .video-section { border-radius: clamp(22px, 6vw, 60px) clamp(22px, 6vw, 60px) 0 0; }
    .feed-container { padding: clamp(52px, 10vw, 100px) var(--page-pad-right) clamp(52px, 10vw, 100px) var(--page-pad-left); }
}

@media (max-width: 520px) {
    .feed-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .video-section {
        padding-left: 0;
        padding-right: 0;
    }
    .video-section-inner > .section-kicker,
    .video-section-inner > .video-header {
        padding-left: var(--page-pad-left);
        padding-right: var(--page-pad-right);
    }
    .video-main {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .stat-box .val { font-size: clamp(1.75rem, 8vw, 2.5rem); }
    .quick-links {
        justify-content: center;
    }
    .content-section {
        padding: clamp(52px, 10vw, 80px) var(--page-pad-right) clamp(52px, 10vw, 80px) var(--page-pad-left);
    }
    .video-title { font-size: clamp(1.25rem, 5vw, 2rem); }
    .video-header { flex-direction: column; align-items: stretch; }
    .video-actions {
        flex-direction: column;
        width: 100%;
    }
    .video-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    .video-section {
        padding-top: clamp(28px, 7vw, 40px);
        padding-bottom: clamp(28px, 7vw, 44px);
    }
    .hero-stats { gap: 14px; }
    .stat-box { padding: 18px clamp(14px, 4vw, 22px); }
}

@media (max-width: 420px) {
    .announcement-bar { font-size: 12px; padding-left: calc(10px + env(safe-area-inset-left)); padding-right: calc(10px + env(safe-area-inset-right)); }
    .hero-title { hyphens: none; }
    .hero-actions { flex-direction: column; width: 100%; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    .trust-row {
        justify-content: center;
        gap: 8px;
    }
    .trust-row span {
        text-align: center;
    }
    .quick-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
    }
    .quick-links a {
        justify-content: center;
        display: inline-flex;
        align-items: center;
        text-align: center;
        min-height: 44px;
        padding-inline: 14px;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
    }
    .video-actions .btn-secondary { min-height: 48px; }
    .section-heading,
    .video-title {
        overflow-wrap: anywhere;
    }
    .intro-copy {
        font-size: 1rem;
        line-height: 1.58;
    }
    .cta-slab {
        padding-left: max(22px, env(safe-area-inset-left, 0px));
        padding-right: max(22px, env(safe-area-inset-right, 0px));
        align-items: stretch;
    }
}

.content-section {
    padding: clamp(56px, 8vw, 72px) var(--page-pad-right) clamp(56px, 8vw, 72px) var(--page-pad-left);
    max-width: 1400px;
    margin: 0 auto;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 26px;
}
.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--rfu-radius);
    padding: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
    border-color: rgba(224, 74, 0, 0.22);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(26, 29, 36, 0.08);
}
.feature .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.feature-accent {
    border-color: rgba(224, 74, 0, 0.28);
    background: linear-gradient(145deg, var(--surface) 0%, var(--surface-2) 100%);
}
.feature h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 8px;
}
.feature p { color: var(--subtle); font-size: 14px; font-weight: 400; line-height: 1.5; }
.section-heading {
    font-family: inherit;
    font-weight: 600;
    letter-spacing: -0.015em;
    font-size: clamp(1.25rem, 3.6vw, 1.625rem);
    line-height: 1.35;
    margin: 0;
}
.intro-copy {
    margin-top: 12px;
    color: var(--subtle);
    max-width: 40rem;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
}
.cta-slab {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    border-radius: 10px;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    box-shadow: none;
    margin-top: 28px;
}
.cta-slab h3 {
    font-size: clamp(1.05rem, 2.5vw, 1.1875rem);
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 6px;
}
.cta-slab p { color: var(--subtle); font-weight: 400; font-size: 14px; line-height: 1.48; }
.cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.quick-links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.quick-links a {
    background: var(--chip-bg);
    border: 1px solid var(--border);
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    color: var(--primary);
}
.quick-links a:hover { border-color: rgba(255,84,0,0.35); }

.note-icon { display: none; }

.founder-note p {
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.62;
    margin: 0;
}

.founder-note b {
    color: var(--primary);
}

.host-section {
    padding: clamp(48px, 8vw, 72px) var(--page-pad-right) clamp(48px, 8vw, 72px) var(--page-pad-left);
    border-top: 1px solid var(--border);
    background: var(--bg);
}
.host-section-inner {
    max-width: 46rem;
    margin: 0 auto;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    padding: clamp(24px, 4vw, 32px) clamp(24px, 4vw, 34px);
}
.host-section .section-kicker {
    margin-bottom: 10px;
}
.host-section .section-heading {
    margin-top: 0;
    margin-bottom: 4px;
}
.host-note {
    margin-top: 16px;
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.68;
}
.host-note p + p {
    margin-top: 1.15em;
}
.host-note .host-outro {
    margin-top: 1.5em;
    padding-top: 1.2em;
    border-top: 1px solid var(--border);
    color: var(--subtle);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.host-note a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    font-weight: 600;
}
.host-note a:hover {
    opacity: 0.9;
}

@media (hover: hover) and (pointer: fine) and (min-width: 993px) {
    .video-card:hover { transform: translateY(-3px); }
}

       @media (max-width: 992px) {
    body {
        font-size: 17px;
        line-height: 1.62;
    }

    .hero-title {
        font-size: clamp(1.875rem, 9.5vw, 2.8rem);
        line-height: 1.06;
        margin-bottom: 18px;
    }

    .hero-lead {
        font-size: 1.1rem;
        line-height: 1.62;
        max-width: 26em;
    }

    .hero-sub {
        font-size: 1.02rem;
        line-height: 1.6;
        max-width: 26em;
    }

    .stat-box {
        border-radius: 18px;
    }

    .stat-box .label { font-size: 13px; }
    .stat-box .hint { font-size: 12px; }

    .section-kicker {
        font-size: 11px;
        letter-spacing: 0.07em;
        margin-bottom: 10px;
    }

    .section-heading {
        line-height: 1.25;
        font-size: clamp(1.3rem, 4.9vw, 1.72rem);
    }

    .intro-copy {
        font-size: 1.04rem;
        line-height: 1.62;
        max-width: none;
        margin-top: 14px;
    }

    .feature {
        padding: clamp(22px, 5vw, 26px);
        border-radius: 16px;
    }

    .feature h3 { font-size: 1.045rem; margin-bottom: 10px; }
    .feature p { font-size: 15px; line-height: 1.55; }

    .cta-slab {
        border-radius: 16px;
        padding: clamp(22px, 6vw, 28px);
    }

    .cta-slab h3 { margin-bottom: 8px; }
    .cta-slab p { font-size: 15px; line-height: 1.52; }

    .video-title { line-height: 1.28; }

    .quick-links {
        margin-top: 18px;
        gap: 10px;
    }

    .quick-links a {
        border-radius: 11px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .founder-wrap {
        margin-bottom: clamp(36px, 8vw, 52px);
    }
    .founder-note {
        padding: clamp(18px, 4vw, 24px) clamp(18px, 5vw, 26px);
        border-radius: 16px;
    }

    .founder-note p {
        font-size: 1.05rem;
        line-height: 1.64;
    }

    .feed-grid {
        gap: clamp(22px, 6vw, 28px);
    }

    .video-card .thumb-placeholder {
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .video-card h3 { font-size: 1.09rem; line-height: 1.32; }
    .video-card p { font-size: 15px; line-height: 1.45; -webkit-line-clamp: 3; }

    .host-note { font-size: 1.05rem; line-height: 1.66; }
    .host-note .host-outro { font-size: 1rem; }

    footer {
        border-radius: 22px 22px 0 0;
        margin-top: 4px;
    }

    .footer-brand p { font-size: 15px; line-height: 1.55; }
    .footer-links li { margin-bottom: 14px; }
    .footer-links a {
        font-size: 15px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .video-card {
        transition: transform 0.15s ease;
    }
    .video-card:active {
        transform: scale(0.985);
    }
}

@media (max-width: 767px) {
    .features {
        margin-top: clamp(17px, 5vw, 24px);
        gap: clamp(11px, 3.2vw, 16px);
    }
    .feature {
        padding: clamp(17px, 5vw, 22px) clamp(17px, 5vw, 21px);
        border-radius: 14px;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.05), 0 12px 32px -14px rgba(2, 6, 23, 0.11);
        border: 1px solid var(--border);
        border-left: 4px solid var(--accent);
    }
    .feature h3 {
        font-size: 1.0625rem;
        line-height: 1.28;
        margin-bottom: 7px;
        letter-spacing: -0.02em;
    }
    .feature p {
        font-size: clamp(14px, 3.9vw, 15px);
        line-height: 1.58;
    }
}

@media (max-width: 992px) and (min-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .video-card { transition: none; }
    .video-card:active { transform: none; opacity: 1; }
    @media (hover: hover) and (pointer: fine) and (min-width: 993px) {
        .video-card:hover,
        .btn-primary:hover,
        .btn-secondary:hover { transform: none; }
    }
}

