/*
    KPI.tv marketing landing page theme
    Broadcast / control-room concept: KPI.tv puts a number on a channel,
    so the visual language borrows from on-air tally lights, EPG listings
    and monitor bezels rather than generic SaaS gradients.
*/

:root {
    --ink:        #0b1119;
    --ink-2:      #080c12;
    --panel:      #131b28;
    --panel-2:    #182233;
    --line:       rgba(148, 163, 184, 0.14);
    --line-2:     rgba(148, 163, 184, 0.24);
    --paper:      #f2f5f9;
    --muted:      #8b97ab;
    --muted-2:    #5f6b80;
    --on-air:     #ff4136;
    --on-air-dim: rgba(255, 65, 54, 0.16);
    --on-air-btn: #c62a1c;
    --tally:      #ffb020;
    --tally-dim:  rgba(255, 176, 32, 0.14);
    --signal:     #34d399;

    --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
    --font-mono:    "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
    --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;

    --container: 1160px;
    --radius: 14px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

a { color: inherit; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--paper);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--on-air);
    margin: 0 0 16px;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--on-air);
    box-shadow: 0 0 0 3px var(--on-air-dim);
}

.eyebrow.is-muted {
    color: var(--muted);
}
.eyebrow.is-muted::before {
    background: var(--muted-2);
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.12);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.btn:focus-visible {
    outline: 2px solid var(--paper);
    outline-offset: 3px;
}
.btn-primary {
    background: var(--on-air-btn);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(255, 65, 54, 0.65);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(255, 65, 54, 0.75); }

.btn-ghost {
    background: transparent;
    color: var(--paper);
    border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--paper); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ---------- Header ---------- */

.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    background: transparent;
    transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
    border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
    background: rgba(11, 17, 25, 0.86);
    backdrop-filter: blur(10px);
    border-bottom-color: var(--line);
    padding: 12px 0;
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    text-decoration: none;
    letter-spacing: -0.01em;
    color: var(--paper);
}
.brand .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--on-air);
    box-shadow: 0 0 0 4px var(--on-air-dim);
}
.brand .tv { color: var(--muted); font-weight: 600; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.main-nav a {
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    color: var(--muted);
    transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--paper); }

.nav-login-mobile { display: none; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-actions .login-link {
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
    color: var(--muted);
}
.header-actions .login-link:hover { color: var(--paper); }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--line-2);
    border-radius: 8px;
    width: 38px;
    height: 38px;
    color: var(--paper);
    font-size: 18px;
    cursor: pointer;
}

/* ---------- Hero ---------- */

.hero {
    padding: 168px 0 96px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 560px;
    background: radial-gradient(ellipse at top, rgba(255, 65, 54, 0.16), transparent 60%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
    position: relative;
}

.hero h1 {
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.04;
}
.hero h1 .accent { color: var(--on-air); }

.hero-sub {
    margin: 22px 0 32px;
    font-size: 18px;
    color: var(--muted);
    max-width: 46ch;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-stats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted-2);
}
.hero-stats span { color: var(--signal); }

/* ---------- Channel monitor (signature element) ---------- */

.monitor {
    position: relative;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line-2);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 40px 80px -32px rgba(0, 0, 0, 0.7);
}

.monitor-screen {
    position: relative;
    background: #060a10;
    border-radius: 12px;
    padding: 26px 26px 22px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.08);
}

.monitor-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.025) 0px,
        rgba(255, 255, 255, 0.025) 1px,
        transparent 1px,
        transparent 3px
    );
    mix-blend-mode: overlay;
}

.monitor-screen.is-tuning {
    animation: tune-in 900ms ease-out;
}
@keyframes tune-in {
    0%   { filter: brightness(2.4) contrast(1.6); opacity: 0.2; }
    12%  { filter: brightness(0.6); opacity: 0.9; }
    24%  { filter: brightness(2.0); opacity: 0.5; }
    40%  { filter: brightness(0.85); opacity: 1; }
    100% { filter: brightness(1); opacity: 1; }
}

.monitor-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.monitor-live {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: var(--on-air);
}
.monitor-live .pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--on-air);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--on-air-dim); }
    50%      { box-shadow: 0 0 0 6px transparent; }
}
.monitor-channel {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted-2);
    letter-spacing: 0.08em;
}

.monitor-figure {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1;
    color: var(--paper);
    font-variant-numeric: tabular-nums;
}
.monitor-label {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.monitor-spark {
    margin-top: 22px;
    width: 100%;
    height: 46px;
    display: block;
}
.monitor-spark path {
    fill: none;
    stroke: var(--signal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.monitor-url {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed rgba(148, 163, 184, 0.18);
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--muted-2);
}

.monitor-tag {
    position: absolute;
    top: -14px;
    right: 22px;
    background: var(--tally);
    color: #1a1200;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
}

/* ---------- Trust strip ---------- */

.trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
}
.trust .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.trust-tag {
    flex: none;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--ink);
    background: var(--paper);
    padding: 5px 9px;
    border-radius: 6px;
    margin-top: 2px;
}
.trust-item h2 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    margin: 0 0 4px;
    color: var(--paper);
}
.trust-item p {
    margin: 0;
    font-size: 13.5px;
    color: var(--muted);
}

/* ---------- Rundown (how it works) ---------- */

.rundown {
    padding: 96px 0 12px;
}
.rundown-head {
    margin-bottom: 48px;
}
.rundown-head h2 {
    font-size: clamp(26px, 3.4vw, 34px);
}

.rundown-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.rundown-step {
    padding: 26px 24px 24px;
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
}
.rundown-num {
    display: block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    margin-bottom: 14px;
}
.rundown-step h3 {
    font-size: 18px;
    margin-bottom: 8px;
}
.rundown-step p {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
}

/* ---------- Multi-view (widget gallery) ---------- */

.multiview {
    padding: 108px 0 12px;
}
.multiview-head {
    margin-bottom: 48px;
}
.multiview-head p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.mv-tile {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 18px 20px 20px;
}
.mv-tile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 18px;
}
.mv-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.mv-fresh {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--signal);
}

.mv-figure {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 30px;
    color: var(--paper);
    font-variant-numeric: tabular-nums;
}
.mv-figure span {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted-2);
    margin-left: 4px;
}
.mv-figure-lg {
    font-size: 40px;
    margin: 10px 0 12px;
}

.mv-spark, .mv-bars {
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 14px;
}
.mv-spark path {
    fill: none;
    stroke: var(--signal);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.mv-bars rect {
    fill: var(--tally);
}

.mv-ring-wrap {
    position: relative;
    width: 84px;
    height: 84px;
    margin: 4px auto 0;
}
.mv-ring {
    display: block;
    width: 84px;
    height: 84px;
    transform: rotate(-90deg);
}
.mv-ring-track {
    fill: none;
    stroke: var(--line-2);
    stroke-width: 8;
}
.mv-ring-value {
    fill: none;
    stroke: var(--signal);
    stroke-width: 8;
    stroke-linecap: round;
}
.mv-ring-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 17px;
    color: var(--paper);
    pointer-events: none;
}

/* ---------- Examples (real live channels) ---------- */

.examples {
    padding: 72px 0 12px;
}
.examples-head {
    margin-bottom: 40px;
}
.examples-head p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.example-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 24px 26px 22px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.example-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 65, 54, 0.4);
    box-shadow: 0 24px 48px -28px rgba(255, 65, 54, 0.35);
}

.example-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.example-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-2);
}
.example-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--on-air);
}
.example-live .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--on-air);
    animation: pulse 1.8s ease-in-out infinite;
}

.example-card h3 {
    font-size: 19px;
    margin: 0 0 8px;
}
.example-card p {
    margin: 0;
    font-size: 14.5px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}

.example-watch {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 22px;
    font-size: 14px;
    font-weight: 600;
    color: var(--paper);
}
.example-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.18s ease;
}
.example-card:hover .example-arrow { transform: translateX(4px); }

/* ---------- Feature / programme guide section ---------- */

.features {
    padding: 108px 0 88px;
}
.features-head {
    margin-bottom: 52px;
}
.features-head p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.epg {
    border-top: 1px solid var(--line);
}
.epg-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 28px;
    align-items: baseline;
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}
.epg-ch {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--on-air);
    letter-spacing: 0.05em;
}
.epg-row p {
    margin: 0;
    font-size: 17px;
    color: var(--paper);
}
.epg-row p span {
    display: block;
    margin-top: 4px;
    font-size: 14.5px;
    color: var(--muted);
}

.features-cta {
    margin-top: 44px;
}

/* ---------- Pricing ---------- */

.pricing {
    padding: 96px 0 120px;
    background: var(--ink-2);
    border-top: 1px solid var(--line);
}
.pricing-head {
    margin-bottom: 48px;
}
.pricing-head p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.plan {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    padding: 30px 28px 28px;
    display: flex;
    flex-direction: column;
}

.plan.is-featured {
    border-color: var(--on-air);
    background: linear-gradient(180deg, rgba(255, 65, 54, 0.08), var(--panel) 40%);
    box-shadow: 0 30px 60px -30px rgba(255, 65, 54, 0.45);
}

.plan-tag {
    font-family: var(--font-mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    color: var(--muted-2);
    text-transform: uppercase;
}
.plan.is-featured .plan-tag { color: var(--on-air); }

.plan-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin: 10px 0 6px;
}
.plan-blurb {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 22px;
    min-height: 42px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-mono);
    margin-bottom: 22px;
}
.plan-price .amount {
    font-size: 40px;
    font-weight: 700;
    color: var(--paper);
}
.plan-price .period {
    font-size: 13px;
    color: var(--muted-2);
}

.plan-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    flex: 1;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    color: var(--paper);
    padding: 8px 0;
    border-top: 1px solid var(--line);
}
.plan-features li:first-child { border-top: none; }
.plan-features li svg {
    flex: none;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--signal);
}
.plan-features li.is-note {
    color: var(--muted);
    font-size: 13px;
}

.plan-cta { margin-top: auto; }

/* ---------- Blog ---------- */

.blog {
    padding: 96px 0 24px;
}
.blog-head {
    margin-bottom: 40px;
}
.blog-head h2 {
    font-size: clamp(26px, 3.4vw, 34px);
}

.blog-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 176, 32, 0.4);
    box-shadow: 0 24px 48px -28px rgba(255, 176, 32, 0.32);
}
.blog-card:hover .example-arrow { transform: translateX(4px); }

.blog-card-image {
    width: 150px;
    flex: none;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: var(--ink-2);
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 20px 26px;
}

.blog-card-top {
    margin-bottom: 10px;
}
.blog-date {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--tally);
    background: var(--tally-dim);
    padding: 4px 9px;
    border-radius: 999px;
}

.blog-card h3 {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 8px;
}
.blog-card p {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--paper);
}

/* ---------- Closing CTA ---------- */

.closing {
    padding: 100px 0 112px;
    border-top: 1px solid var(--line);
    text-align: center;
}
.closing-inner {
    max-width: 560px;
    margin: 0 auto;
}
.closing h2 {
    font-size: clamp(26px, 3.6vw, 36px);
    margin: 0 0 16px;
}
.closing p {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 17px;
}

/* ---------- Footer ---------- */

.site-footer {
    padding: 40px 0;
    border-top: 1px solid var(--line);
}
.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
}
.footer-brand .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--muted);
}
.footer-links {
    display: flex;
    gap: 22px;
    font-size: 13.5px;
}
.footer-links a {
    color: var(--muted);
    text-decoration: none;
}
.footer-links a:hover { color: var(--paper); }

/* Scroll-reveal: JS opts elements into this class before observing them,
   so content is fully visible by default if JS never runs. */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .hero .container { grid-template-columns: 1fr; }
    .monitor { max-width: 460px; }
    .plans { grid-template-columns: 1fr; }
    .trust .container { grid-template-columns: 1fr; gap: 20px; }
    .rundown-steps { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 12px 24px 18px;
        background: rgba(11, 17, 25, 0.98);
        border-bottom: 1px solid var(--line);
    }
    .main-nav a { padding: 10px 0; width: 100%; }
    .main-nav.is-open { display: flex; }
    .nav-login-mobile { display: block; }
    .header-actions .login-link { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .hero { padding: 132px 0 72px; }
    .epg-row { grid-template-columns: 56px 1fr; gap: 16px; }
    .mv-grid { grid-template-columns: 1fr; }
    .blog-card-image { width: 96px; }
    .blog-card-body { padding: 14px 16px; }
    .blog-card p { -webkit-line-clamp: 2; }
}
