:root {
    --bg-primary: #060610;
    --bg-secondary: #0b0b18;
    --bg-elevated: #10101f;
    --bg-card: #0d0d1a;
    --text-primary: #b8c4d8;
    --text-bright: #dce4f0;
    --text-secondary: #fff;
    --text-muted: #8892a4;
    --accent: #0ff;
    --accent-dim: #0cc;
    --accent-glow: rgba(0, 255, 255, 0.10);
    --accent-glow-strong: rgba(0, 255, 255, 0.20);
    --accent-warm: #ff6b4a;
    --border: rgba(0, 255, 255, 0.06);
    --border-hover: rgba(0, 255, 255, 0.14);
    --radius: 12px;
    --radius-lg: 20px;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Source Serif 4', Georgia, serif;

    --sp-accent: #5ee3d4;
    /* the teal */
    --sp-text: #e8ecf3;
    --sp-muted: #c5cad6;
    --sp-bg: #0a0e1a;
    /* match your page bg */
}

::selection {
    background: var(--accent);
    color: var(--bg-primary);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── STARFIELD ── */
.starfield {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.starfield canvas {
    width: 100%;
    height: 100%;
}

/* body > *:not(.starfield) { position: relative; z-index: 1; } */

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    /* background: rgba(6, 6, 16, 0.82); */
    background-color: #000000;
    backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1300px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    width: 318px;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.nav-logo.footer-logo img {
    height: 45px;
    width: auto;
}

.nav-logo .star {
    width: 24px;
    height: 24px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pulse-star 3s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(0, 255, 255, 0.5));
}

@keyframes pulse-star {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(0.92);
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-trigger,
.nav-links a {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.nav-trigger {
    background: transparent;
    border: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    cursor: pointer;
}

.nav-trigger:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
}

.nav-dropdown {
    list-style: none;
}

.nav-dropdown li+li {
    margin-top: 2px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border-hover);
    border-radius: 10px;
    background: rgba(10, 10, 22, 0.72);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.nav-toggle:hover {
    border-color: rgba(0, 255, 255, 0.28);
    background: rgba(0, 255, 255, 0.08);
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-bright);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.nav-toggle-icon {
    position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

nav.nav-open .nav-toggle-icon {
    background: transparent;
}

nav.nav-open .nav-toggle-icon::before {
    transform: translateY(6px) rotate(45deg);
}

nav.nav-open .nav-toggle-icon::after {
    transform: translateY(-6px) rotate(-45deg);
}

body.nav-menu-open {
    overflow: hidden;
}

/* ── HERO ── */
.hero {
    --nav-height: 72px;
    min-height: calc(100dvh - var(--nav-height));
    max-height: calc(100dvh - var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 50px 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.hero-badge {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s ease both;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 800px;
    color: var(--text-bright);
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 .gradient-text {
    /* background: linear-gradient(135deg, var(--accent) 0%, #0cc 40%, #fff 100%); */
    background: linear-gradient(
        275deg,
        var(--accent) 0%,
        #0cc 25%,
        #fff 50%,
        #0cc 75%,
        var(--accent) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 18s ease-in-out infinite alternate;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 520px;
    margin-top: 24px;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    animation: fadeUp 0.8s ease 0.3s both;
}

.btn-primary,
.btn-secondary {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}

.btn-primary {
    background: rgba(0, 255, 255, 0.12);
    color: var(--accent);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
    background: rgba(0, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    background: var(--bg-elevated);
    border-color: rgba(0, 255, 255, 0.25);
}

.hero-affiliations {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    animation: fadeUp 0.8s ease 0.4s both;
}

.hero-affiliations span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-bright);
}

.hero-affiliations span::before {
    content: '✦ ';
    color: var(--accent-dim);
    opacity: 0.5;
}

.hero-scroll {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-top: 12px;
    border: 1px solid rgba(0, 255, 255, 0.25);
    border-radius: 50%;
    background: rgba(6, 6, 16, 0.55);
    color: var(--accent);
    text-decoration: none;
    backdrop-filter: blur(10px);
    animation: fadeUp 0.8s ease 0.5s both, hero-scroll-bob 2.4s ease-in-out 1.3s infinite;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero-scroll:hover,
.hero-scroll:focus-visible {
    background: rgba(0, 255, 255, 0.14);
    border-color: rgba(0, 255, 255, 0.45);
    color: var(--text-bright);
    box-shadow: 0 8px 24px rgba(0, 255, 255, 0.15);
}

.hero-scroll:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.hero-scroll__icon {
    display: block;
}

@keyframes hero-scroll-bob {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

#products {
    scroll-margin-top: 88px;
}

/* ── SECTIONS ── */
section,
.page-main {
    padding: 100px 48px;
    max-width: 1300px;
    margin: 0 auto;
}

.page-main {
    min-height: 50vh;
}

.section-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text-bright);
}

.section-desc {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 56px;
}

/* ── PRODUCTS GRID ── */
.products-grid {
    display: grid;
    /* for 3 per a row on desktop */
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.35s;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 255, 255, 0.04);
}

a.product-card {
    text-decoration: none;
    color: inherit;
}

.product-card:hover::before {
    opacity: 1;
}

.product-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent);
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    color: var(--text-bright);
}

.product-card .tag {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-dim);
    margin-bottom: 12px;
    display: inline-block;
}

.product-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── SPOTLIGHT STAGE ── */
.spotlight-stage {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    max-width: 1300px;
    margin: 0 auto;
    container-type: inline-size;
    container-name: spotlight;
}

.spotlight-cone {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.spotlight-cone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 248, 220, 0.95), rgba(255, 248, 220, 0.4) 60%, transparent 100%);
    border-radius: 50%;
    filter: blur(6px);
    animation: lamp-flicker 4s ease-in-out infinite;
}

.spotlight-cone::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 340px solid transparent;
    border-right: 340px solid transparent;
    /* border-bottom: 900px solid rgba(255, 248, 220, 0.09); */
    border-bottom: 900px solid rgba(255, 248, 220, 0.1);
    filter: blur(30px);
    animation: cone-breathe 6s ease-in-out infinite;
}

@keyframes lamp-flicker {

    0%,
    100% {
        opacity: 1;
    }

    30% {
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }

    70% {
        opacity: 0.9;
    }
}

@keyframes cone-breathe {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }
}

.spotlight-floor {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(600px, 90vw);
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 248, 220, 0.12) 0%, rgba(255, 248, 220, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
    z-index: 0;
}

.spotlight-partner-row {
    grid-area: partner;
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 16px;
}

.spotlight-partner-row .spotlight-floor {
    bottom: 0;
}

.spotlight-header {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.spotlight-header .section-label {
    font-size: 13px;
    letter-spacing: 0.15em;
}

.spotlight-header .section-title {
    font-size: clamp(32px, 4vw, 52px);
    letter-spacing: -0.03em;
}

.spotlight-featured {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 48px;
}

.featured-title-block {
    margin-bottom: 8px;
}

.featured-title-block h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-bright);
}

.spotlight-meta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.meta-chip {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(0, 255, 255, 0.04);
    border: 1px solid rgba(0, 255, 255, 0.08);
    padding: 5px 14px;
    border-radius: 100px;
}

.spotlight-featured-poster {
    margin: 8px 0 20px;
}

.spotlight-featured-poster a {
    display: inline-block;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.spotlight-featured-poster a:hover {
    transform: translateY(-3px);
    opacity: 0.88;
}

.spotlight-featured-poster img {
    display: block;
    max-height: 300px;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}

.spotlight-quote {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 620px;
    font-style: italic;
    position: relative;
    padding: 0 24px;
}

.spotlight-quote::before,
.spotlight-quote::after {
    font-family: var(--font-body);
    font-size: 48px;
    color: rgba(255, 248, 220, 0.12);
    position: absolute;
    line-height: 1;
}

.spotlight-quote::before {
    content: '\201C';
    top: -8px;
    left: -4px;
}

.spotlight-quote::after {
    content: '\201D';
    bottom: -24px;
    right: 0;
}

/* ── TITLE WINGS ── */
.spotlight-wings {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas:
        "partner partner partner"
        "left divider right";
    gap: 32px 0;
    padding: 0 48px;
    margin-top: 40px;
}

.partner-stage {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    padding-bottom: 0;
}

.wing-left {
    grid-area: left;
    padding-right: 32px;
    text-align: right;
}

.wing-divider {
    grid-area: divider;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 255, 255, 0.08) 30%, rgba(0, 255, 255, 0.08) 70%, transparent);
    align-self: stretch;
}

.wing-right {
    grid-area: right;
    padding-left: 32px;
    text-align: left;
}

.wing {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    justify-items: center;
    align-content: start;
}

.spotlight-thumb {
    background: rgba(0, 255, 255, 0.02);
    background-image: var(--poster-image, url('../images/poster.jpeg'));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* border: 1px solid rgba(0, 255, 255, 0.06); */
    border-radius: 10px;
    width: 100%;
    max-width: clamp(112px, 11cqi, 168px);
    min-width: 0;
    aspect-ratio: 2 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 10px 8px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.spotlight-thumb.thumb-link {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    width: 100%;
    min-width: 0;
}

.spotlight-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 40%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.spotlight-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top center, rgba(255, 248, 220, 0.03), transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.spotlight-thumb:hover {
    border-color: rgba(0, 255, 255, 0.18);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 255, 0.04);
}

.spotlight-thumb:hover::after {
    opacity: 1;
}

.spotlight-thumb .thumb-title {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #fff;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.spotlight-thumb .thumb-sub {
    font-family: var(--font-display);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 3px;
    position: relative;
    z-index: 1;
}

.spotlight-thumb .thumb-rating {
    font-family: var(--font-display);
    font-size: 8px;
    font-weight: 600;
    color: rgba(255, 248, 220, 0.85);
    margin-top: 4px;
    position: relative;
    z-index: 1;
}

@container spotlight (min-width: 900px) {
    .wing {
        gap: 14px;
    }

    .spotlight-thumb {
        padding: 11px 9px;
    }

    .spotlight-thumb .thumb-title {
        font-size: 11px;
    }
}

@container spotlight (min-width: 1100px) {
    .wing {
        gap: 16px;
    }

    .spotlight-thumb {
        max-width: clamp(128px, 12cqi, 168px);
        padding: 12px 10px;
    }

    .spotlight-thumb .thumb-sub {
        font-size: 10px;
    }

    .spotlight-thumb .thumb-rating {
        font-size: 9px;
    }
}

/* ── PARTNER ── */
.partner-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08), rgba(0, 255, 255, 0.02));
    border: 2px solid rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-dim);
    margin-bottom: 16px;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.06);
}

.partner-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-bright);
}

.partner-info p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.partner-info .partner-role {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    color: var(--accent-dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 64px 48px 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 12px;
    max-width: 280px;
}

.footer-menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    align-items: start;
    list-style: none;
}

.footer-menu .nav-item {
    position: relative;
}

.footer-menu .nav-item > a,
.footer-menu .nav-item > .nav-trigger {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-menu .nav-item > span.nav-trigger {
    cursor: default;
}

.footer-menu .nav-item > a:hover {
    color: var(--accent);
}

.footer-submenu {
    list-style: none;
    margin-top: 10px;
    display: grid;
    gap: 6px;
}

.footer-submenu a {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-submenu a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

/* ── ANIMATIONS ── */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* quote spotlight */
.sp-spotlight-quote {
    --sp-accent: #5ee3d4;
    --sp-text: #e8ecf3;
    --sp-muted: #c5cad6;
    --sp-bg: #0a0e1a;

    position: relative;
    overflow: hidden;
    padding: 3rem 1.5rem 4rem;
    text-align: center;
}

.sp-spotlight-quote__inner {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
}

.sp-spotlight-quote__kicker {
    color: var(--sp-accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    position: relative;
    z-index: 3;

    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    font-size: 13px;
    letter-spacing: 0.15em;
}

.sp-spotlight-quote__company {
    color: #fff;
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 0 0 24px;
    position: relative;
    z-index: 3;
}

/* Beam stage — contains the light source, the cone SVG, and the quote */
.sp-spotlight-quote__stage {
    position: relative;
    padding-top: 1.5rem;
    padding-top: 4rem;
}

/* The glowing light source */

.sp-spotlight-quote__source {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(circle,
            #ffffff 0%,
            #f7d070 45%,
            rgba(247, 208, 112, 0.3) 70%,
            transparent 100%);
    box-shadow: 0 0 24px 6px rgba(247, 208, 112, 0.5);
    /* Warm glow */
    z-index: 2;
}

/* The cone of light. Inline SVG with two gradients. */
.sp-spotlight-quote__beam {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 720px;
    /* height: 100%; */
    min-height: 520px;
    /* Slight increase to securely cover the dynamic text length */
    z-index: 1;
    pointer-events: none;
    opacity: .55;
}

/* --- NEW SHAPE-OUTSIDE CONE MECHANICS --- */

.sp-spotlight-quote__cone-container {
    position: relative;
    z-index: 3;
    margin: 0 auto;
    padding: 5rem 0 0;
    max-width: 720px;
    /* Aligns precisely with the SVG width boundaries */
}

.sp-spotlight-quote__slope-left,
.sp-spotlight-quote__slope-right {
    height: 480px;
    /* Adjust this matching your copy size to scale the layout height */
    width: 50%;
}

.sp-spotlight-quote__slope-left {
    float: left;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
    shape-outside: polygon(0% 0%, 100% 0%, 0% 100%);
}

.sp-spotlight-quote__slope-right {
    float: right;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
    shape-outside: polygon(0% 0%, 100% 0%, 100% 100%);
}

.sp-spotlight-quote__content {
    margin: 0;
    text-align: justify;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    color: var(--sp-text);
    font-size: 16px;
    line-height: 1.65;
}

/* ---------------------------------------- */

.sp-spotlight-quote__highlight {
    color: var(--sp-accent);
    font-style: normal;
    font-weight: 500;
}

.sp-spotlight-quote__emphasis {
    color: #fff;
    font-style: normal;
    font-weight: 600;
}

/* CTA */
.sp-spotlight-quote__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 2.5rem;
    padding: 11px 22px;
    color: var(--sp-accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    background: rgba(94, 227, 212, 0.06);
    border: 1px solid rgba(94, 227, 212, 0.4);
    border-radius: 6px;
    position: relative;
    z-index: 3;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sp-spotlight-quote__cta:hover {
    background: rgba(94, 227, 212, 0.12);
    border-color: rgba(94, 227, 212, 0.7);
}

.sp-spotlight-quote__cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    transition: transform 0.2s ease;
}

.sp-spotlight-quote__cta-arrow svg {
    display: block;
    width: 0.85em;
    height: 0.85em;
}

.sp-spotlight-quote__cta:hover .sp-spotlight-quote__cta-arrow {
    transform: translate(2px, -2px);
}

/* ── HISTORY TIMELINE ── */
.page-main--history {
    /* max-width: 1100px; */
}

.page-main--history .history-intro .section-desc {
    margin-bottom: 0;
}

.history-intro {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 72px;
}

.history-intro__content {
    flex: 1;
    min-width: 0;
}

.history-intro__jump {
    flex-shrink: 0;
    margin-top: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0, 255, 255, 0.18);
    background: rgba(0, 255, 255, 0.05);
    color: var(--accent);
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.history-intro__jump:hover,
.history-intro__jump:focus-visible {
    background: rgba(0, 255, 255, 0.12);
    border-color: rgba(0, 255, 255, 0.32);
    color: var(--sp-accent);
    transform: translateY(-1px);
}

.history-intro__jump:focus-visible {
    outline: 2px solid var(--sp-accent);
    outline-offset: 3px;
}

#history-beginning {
    scroll-margin-top: 88px;
}

.history-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0 0 72px;
    max-width: 1100px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg,
            transparent 0%,
            var(--accent) 1%,
            var(--sp-accent) 45%,
            var(--accent-warm) 97%,
            transparent 100%);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.18);
}

.history-event {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    gap: 0 28px;
}

.history-event__card {
    grid-column: 1;
    grid-row: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.history-event__card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 255, 255, 0.06);
    transform: translateY(-2px);
}

.history-event--right .history-event__card {
    grid-column: 3;
}

.history-event__marker {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    width: 16px;
    height: 16px;
    margin-top: 28px;
    border-radius: 50%;
    background: var(--bg-primary);
    background: var(--accent);
    border: 3px solid var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow), 0 0 16px rgba(0, 255, 255, 0.35);
    z-index: 1;
}

.history-event--right .history-event__marker {
    border-color: var(--sp-accent);
    box-shadow: 0 0 0 4px rgba(94, 227, 212, 0.12), 0 0 16px rgba(94, 227, 212, 0.35);
    /* margin-left: 4px; */
}

.history-event__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.04) 0%, rgba(94, 227, 212, 0.02) 100%);
    border-bottom: 1px solid var(--border);
}

.history-event__media img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.history-event__media--logo {
    /* background: linear-gradient(135deg, rgba(255, 107, 74, 0.06) 0%, rgba(0, 255, 255, 0.04) 100%); */
    background-color: black;
}

.history-event__media--logo img {
    max-height: 56px;
    opacity: 0.9;
}

.history-event__content {
    padding: 24px 28px 28px;
}

.history-event__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-bright);
    margin: 0 0 10px;
}

.history-event__date {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 4px 10px;
    border-radius: 999px;
}

.history-event:nth-child(3n+1) .history-event__date {
    color: var(--accent-warm);
    background: rgba(255, 107, 74, 0.08);
    border: 1px solid rgba(255, 107, 74, 0.2);
}

.history-event:nth-child(3n+2) .history-event__date {
    color: var(--sp-accent);
    background: rgba(94, 227, 212, 0.08);
    border: 1px solid rgba(94, 227, 212, 0.22);
}

.history-event:nth-child(3n) .history-event__date {
    color: var(--accent);
    background: rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.22);
}

.history-event__body {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
}

.history-event__body p {
    margin: 0 0 12px;
}

.history-event__body p:last-child {
    margin-bottom: 0;
}

.history-event__body ul {
    margin: 0 0 12px;
    padding-left: 1.2em;
}

.history-event__body li {
    margin-bottom: 6px;
}

.history-event__body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.history-event__body a:hover {
    color: var(--sp-accent);
}

.history-event__body strong {
    color: var(--text-bright);
    font-weight: 600;
}

.history-event__expand {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: none;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.history-event__expand:hover,
.history-event__expand:focus-visible {
    color: var(--sp-accent);
}

.history-event__expand:focus-visible {
    outline: 2px solid var(--sp-accent);
    outline-offset: 3px;
}

.history-event__more {
    margin-top: 12px;
}

.history-event__more[hidden] {
    display: none;
}

/* customers page  */
.customers-container {
    align-items: center;
    display: flex;
    gap: 5%;
}

.customers-header {
    width: 60%;
}

.customers-search {
    width: 40%;
}

.customers-list {
    max-width: 900px;
    margin: 0 auto;
}

.customers-search {
    max-width: 420px;
    margin-bottom: 40px;
}

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

.customers-search__input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--text-bright);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.customers-search__input::placeholder {
    color: var(--text-muted);
}

.customers-search__input:focus {
    border-color: var(--border-hover);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.customers-search__status {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--accent-dim);
}

.customers-search__status[hidden] {
    display: none;
}

.customers-search__empty {
    margin: 12px 0 0;
    font-size: 14px;
    color: var(--text-muted);
}

.customer-item[hidden] {
    display: none;
}

.customers-list .customer-item {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 10px;
    /* font-family: var(--font-display); */
    color: var(--text-primary);
}

.customers-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 3;
    column-gap: 3rem;
}

/* terms page */
.terms-list {
    max-width: 500px;
    margin: 0 auto;
    width: 90%;
}

/* contact page */
.page-main--contact {
    /* max-width: 960px; */
}

.contact-intro {
    /* max-width: 1200px;
    margin: 0 auto;
    width: 90%; */
}

.page-main--contact .contact-intro .section-desc {
    margin-bottom: 56px;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 90%;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.contact-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 255, 255, 0.05);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:nth-child(2) .contact-card__icon,
.contact-card:nth-child(4) .contact-card__icon {
    color: var(--sp-accent);
    background: rgba(94, 227, 212, 0.08);
    border-color: rgba(94, 227, 212, 0.15);
}

.contact-card:nth-child(3) .contact-card__icon {
    /* color: var(--accent-warm); */
    /* background: rgba(255, 107, 74, 0.08);
    border-color: rgba(255, 107, 74, 0.15); */
    color: var(--sp-accent);
    background: rgba(94, 227, 212, 0.08);
    border-color: rgba(94, 227, 212, 0.15);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-glow);
    border: 1px solid rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--accent);
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-bright);
    margin: 0 0 12px;
}

.contact-card__body {
    font-style: normal;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
    margin: 0;
}

.contact-card__body p {
    margin: 0 0 6px;
}

.contact-card__body p:last-child {
    margin-bottom: 0;
}

.contact-card__body a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-card__body a:hover {
    color: var(--sp-accent);
}

/* Contact form */
.contact-form {
    grid-column: 1 / -1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 36px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sp-accent), transparent);
    opacity: 0.85;
}

.contact-form__header {
    margin-bottom: 28px;
}

.contact-form__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    margin: 0 0 10px;
}

.contact-form__desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-primary);
    margin: 0;
    max-width: 640px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.signup-form .form-row {
    display: flex;
    gap: 16px;
}

.signup-form .form-row--full {
    flex-direction: column;
}

.signup-form .form-label {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.signup-form .form-label::before {
    content: attr(data-label);
    position: absolute;
    top: -0.65em;
    left: 0.85em;
    padding: 0 0.45em;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-bright);
    background: var(--bg-card);
    z-index: 1;
    transition: color 0.2s ease, background 0.2s ease;
}

.signup-form .form-label:focus-within::before {
    color: var(--sp-accent);
}

.signup-form input,
.signup-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-hover);
    background: var(--bg-elevated);
    color: var(--text-bright);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
    color: var(--text-muted);
}

.signup-form input:focus,
.signup-form textarea:focus {
    outline: none;
    border-color: rgba(94, 227, 212, 0.55);
    background: rgba(94, 227, 212, 0.06);
    box-shadow: 0 0 0 3px rgba(94, 227, 212, 0.12);
}

.signup-form textarea {
    min-height: 140px;
    resize: vertical;
}

.signup-form .checkbox-row {
    margin-top: 4px;
}

.signup-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-muted);
}

.signup-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--sp-accent);
    cursor: pointer;
}

.signup-form .checkbox-label span {
    color: var(--text-secondary);
}

.signup-form .contact-form__submit {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 4px;
}

.signup-form .contact-form__submit:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.contact-form__success {
    text-align: center;
    padding: 24px 12px 8px;
}

.contact-form__success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #060610;
    background: var(--sp-accent);
    box-shadow: 0 8px 24px rgba(94, 227, 212, 0.25);
}

.contact-form--submitted {
    padding-top: 40px;
    padding-bottom: 44px;
}

.contact-form__error {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 74, 0.35);
    background: rgba(255, 107, 74, 0.1);
}

.contact-form__error-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ffb4a6;
}

.contact-form__header.is-hidden,
#contactForm.is-hidden,
#contactForm[hidden],
.contact-form__success[hidden],
.contact-form__error[hidden] {
    display: none !important;
}

/* ── Blu-ray + DVD encodes gallery ── */
.encodes-search {
    max-width: 420px;
    margin: 0 auto 40px;
}

.bluray-dvd-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 28px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.encode-poster {
    text-align: center;
}

.encode-poster[hidden] {
    display: none;
}

.encode-poster__link {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    cursor: zoom-in;
}

.encode-poster__link:hover,
.encode-poster__link:focus-visible {
    border-color: var(--border-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--accent-glow);
    transform: translateY(-2px);
    outline: none;
}

.encode-poster__link img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 225 / 285;
    object-fit: cover;
}

.encode-poster > div {
    margin-top: 10px;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    line-height: 1.35;
}

/* Lightbox */
body.encode-lightbox-open {
    overflow: hidden;
}

.encode-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 72px;
    background: rgba(6, 8, 12, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.encode-lightbox[hidden] {
    display: none;
}

.encode-lightbox__figure {
    margin: 0;
    max-width: min(96vw, 1600px);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.encode-lightbox__img {
    display: block;
    max-width: min(96vw, 1600px);
    max-height: calc(100vh - 160px);
    width: auto;
    height: auto;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.encode-lightbox__caption {
    margin-top: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: min(96vw, 1600px);
}

.encode-lightbox__title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
    line-height: 1.35;
}

.encode-lightbox__studio {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--accent-dim);
}

.encode-lightbox__counter {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

.encode-lightbox__close,
.encode-lightbox__nav {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-bright);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.encode-lightbox__close:hover,
.encode-lightbox__close:focus-visible,
.encode-lightbox__nav:hover,
.encode-lightbox__nav:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    outline: none;
}

.encode-lightbox__close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.encode-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 36px;
    line-height: 1;
    padding-bottom: 4px;
}

.encode-lightbox__nav--prev {
    left: 16px;
}

.encode-lightbox__nav--next {
    right: 16px;
}

/* Ultra-wide UI screenshots (feature chart lightbox) */
.encode-lightbox--screenshots .encode-lightbox__figure.is-wide {
    overflow-x: auto;
    overflow-y: hidden;
    max-width: 96vw;
    align-items: flex-start;
    -webkit-overflow-scrolling: touch;
}

.encode-lightbox--screenshots .encode-lightbox__img.is-wide {
    max-width: none;
    max-height: min(72vh, calc(100vh - 160px));
    width: auto;
    height: auto;
}

/* ── 4K Ultra HD encodes showcase ── */
.page-main--uhd .uhd-intro {
    text-align: left;
    margin-bottom: 48px;
}

.uhd-showcase {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.uhd-encode {
    padding: 28px 24px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    width: 100%;
}

.uhd-encode__row {
    display: grid;
    gap: 24px 28px;
}

.uhd-encode__row + .uhd-encode__row {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.uhd-encode__row--triple {
    grid-template-columns: minmax(0, 260px) minmax(0, 260px) minmax(0, 280px);
    justify-content: center;
    align-items: start;
}

.uhd-encode__row--split {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 280px);
    align-items: start;
}

.uhd-encode__poster {
    margin: 0;
    text-align: center;
}

.uhd-encode__row--triple:first-child .uhd-encode__poster {
    align-self: center;
}

.uhd-encode__poster img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    margin: 0 auto;
    border-radius: calc(var(--radius) - 2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.uhd-encode__studio {
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--accent-dim);
}

.uhd-review {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-primary);
}

.uhd-review p {
    margin: 0 0 14px;
}

.uhd-review p:last-child {
    margin-bottom: 0;
}

.uhd-review__source {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 12px !important;
}

.uhd-review__byline {
    margin-top: 16px !important;
    font-size: 11px;
    letter-spacing: 0.03em;
    color: var(--text-muted);
}

.uhd-review__group {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.uhd-review strong {
    color: var(--text-bright);
}

.uhd-encode--center {
    text-align: center;
    padding-bottom: 40px;
}

.uhd-encode__heading {
    margin: 0 0 20px;
    font-family: var(--font-display);
    font-size: clamp(18px, 2.4vw, 22px);
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-bright);
}

.uhd-encode__subtitle {
    display: block;
    margin-top: 6px;
    font-size: 0.92em;
    font-weight: 500;
    color: var(--accent-dim);
}

.uhd-encode__video {
    margin: 0 auto;
    max-width: 540px;
}

.uhd-encode__video a {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.uhd-encode__video a:hover,
.uhd-encode__video a:focus-visible {
    border-color: var(--border-hover);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--accent-glow);
    transform: translateY(-2px);
    outline: none;
}

.uhd-encode__video img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Product pages ── */
.page-main--product {
    padding-top: 48px;
    padding-bottom: 64px;
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px 48px;
    align-items: center;
    margin-bottom: 56px;
    padding: 0;
}

.product-hero__title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: var(--text-bright);
    margin-bottom: 14px;
}

.product-hero__tagline {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 20px;
}

.product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.product-hero__media {
    margin: 0;
    overflow: hidden;
}

.product-hero__media img {
    display: block;
    width: 100%;
    max-height: min(680px, 65vh);
    object-fit: contain;
    object-position: center;
}

.product-section {
    margin-bottom: 56px;
    padding: 50px 0;
}

.product-section--copy {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    padding: 0 0 30px;
}

.product-featuring {
    margin-bottom: 32px;
}

.product-featuring__label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin: 0 0 20px;
}

.product-hdr-block {
    display: grid;
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
    gap: 24px 28px;
    align-items: start;
    margin-bottom: 28px;
}

.product-hdr-block--hdr10 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

.product-hdr-block__and {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-bright);
    margin: 0;
}

.product-hdr-block__logo {
    display: block;
    width: 100%;
    max-width: 200px;
    height: auto;
}

.product-hdr-block--sde {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    align-items: center;
    gap: 28px 32px;
}

.product-hdr-block--sde > a {
    display: block;
    min-width: 0;
}

.product-hdr-block--sde .product-hdr-block__logo {
    max-width: 300px;
    width: 100%;
}

.product-hdr-block--sde .product-hdr-block__body {
    min-width: 0;
}

.product-hdr-block__logo--hdr10 {
    max-width: 160px;
}

.product-hdr-block__logo--3d {
    max-width: 220px;
}

.product-hdr-block--3d {
    margin-bottom: 36px;
}

.product-hdr-block__body p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0 0 14px;
}

.product-hdr-block__body p:last-of-type {
    margin-bottom: 16px;
}

.product-certs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.product-certs li {
    position: relative;
    padding-left: 16px;
    font-size: 15px;
    line-height: 1.5;
    /* color: var(--text-primary); */
    color: var(--text-secondary);
}

.product-certs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.product-section__copy {
    text-align: left;
}

.product-section__copy p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.product-section__copy p:last-child {
    margin-bottom: 0;
}

.product-highlights {
    margin: 0 0 20px;
    padding-left: 1.25rem;
    display: grid;
    gap: 10px;
}

.product-highlights li {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.product-features-link {
    margin-top: 24px;
}

.btn-teal-solid {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    background: var(--sp-accent);
    color: #060610;
    border: 1px solid var(--sp-accent);
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-teal-solid:hover {
    background: #fff;
    border-color: #fff;
    color: #060610;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 227, 212, 0.35);
}

.btn-teal-solid:focus-visible {
    outline: 2px solid var(--sp-accent);
    outline-offset: 4px;
}

.product-section--features,
.product-section--gallery {
    text-align: center;
}

.product-section--features {
    margin-top: 0;
    margin-bottom: 48px;
    padding-top: 8px;
}

.product-section--features .section-label {
    margin-bottom: 16px;
}

.product-section--features .section-title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

.product-section--gallery .section-title {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.product-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.product-feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.product-feature-card__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-bright);
    margin: 0 0 10px;
}

.product-feature-card__text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-primary);
    margin: 0;
}

.product-gallery {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 56px;
}

.product-gallery__frame {
    margin: 0;
}

.product-gallery__open {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    cursor: zoom-in;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-gallery__open:hover,
.product-gallery__open:focus-visible {
    border-color: var(--border-hover);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--accent-glow);
    transform: translateY(-2px);
    outline: none;
}

.product-gallery__img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 280px;
    object-fit: contain;
    background: #0a0a14;
}

.product-gallery__caption {
    margin-top: 14px;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-bright);
}

.product-gallery__nav {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-hover);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-bright);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.product-gallery__nav:hover,
.product-gallery__nav:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    outline: none;
}

.product-gallery__nav--prev {
    left: 0;
}

.product-gallery__nav--next {
    right: 0;
}

.product-gallery__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.product-gallery__counter {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.product-gallery__dots {
    display: flex;
    gap: 8px;
}

.product-gallery__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--text-muted);
    opacity: 0.45;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.product-gallery__dot.is-active {
    opacity: 1;
    background: var(--accent);
    transform: scale(1.15);
}

/* ── Encoder features chart ── */
.page-main--feature-chart {
    padding-top: 48px;
    padding-bottom: 64px;
}

.feature-chart-nav {
    margin-bottom: 28px;
}

.feature-chart-nav__back {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

.feature-chart-nav__back:hover {
    color: var(--text-bright);
}

.feature-chart {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 0px 0;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.feature-chart__table {
    width: 100%;
    border-collapse: collapse;
    /* font-family: var(--font-display); */
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-bright);
}

.feature-chart__table td {
    padding: 8px 12px;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.feature-chart__table tr:last-child td {
    border-bottom: none;
}

.feature-chart__title td {
    text-align: center;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--text-bright);
    font-family: var(--font-display);
    padding: 4px 12px 12px;
}

.feature-chart__banner td {
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-bright);
    background: rgba(94, 227, 212, 0.12);
    border: 1px solid rgba(94, 227, 212, 0.22);
    /* border-radius: 8px; */
    font-family: var(--font-display);
    padding: 12px 16px;
    margin-bottom: 8px;
}

.feature-chart__section td[colspan="2"] {
    background: rgb(232 175 0 / 51%);
    color: var(--text-bright);
    font-weight: 700;
    padding-top: 14px;
    padding-bottom: 10px;
    font-family: var(--font-display);
}

.feature-chart__section--split .feature-chart__label,
.feature-chart__section--split .feature-chart__desc {
    background: rgb(232 175 0 / 51%);
    color: var(--text-bright);
    font-weight: 700;
    padding-top: 14px;
    padding-bottom: 10px;
    font-family: var(--font-display);
}

.feature-chart__spec-title td {
    text-align: center;
    background: rgba(94, 227, 212, 0.1);
    color: var(--text-bright);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-display);
    padding: 16px 12px 12px;
}

.feature-chart__spec-intro td {
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-bright);
    padding: 8px 12px 16px;
}

.feature-chart__spec-group td {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-bright);
    font-weight: 600;
    font-family: var(--font-display);
    padding: 10px 12px 8px;
}

.feature-chart__spec-group--split .feature-chart__label {
    width: 36%;
    vertical-align: top;
}

.feature-chart__spec-group--split .feature-chart__desc {
    background: transparent;
    font-weight: 400;
    vertical-align: top;
}

.feature-chart__spec-group--last .feature-chart__desc {
    padding-bottom: 16px;
}

.feature-chart__spec-row .feature-chart__label,
.feature-chart__spec-row .feature-chart__desc {
    background: transparent;
    font-weight: 400;
    padding: 5px 12px;
}

.feature-chart__spec-row .feature-chart__label {
    width: 36%;
    color: var(--text-bright);
}

.feature-chart__spec-row--last .feature-chart__desc {
    padding-bottom: 16px;
}

.feature-chart__spec-item .feature-chart__label {
    background: rgba(255, 255, 255, 0.04);
}

.feature-chart__spec-item .feature-chart__desc {
    background: transparent;
}

.feature-chart__label {
    width: 36%;
    background: rgba(191, 191, 191, 0.1);
    color: var(--text-bright);
    font-weight: 600;
    font-family: var(--font-display);
}

.feature-chart__desc {
    width: 64%;
    color: var(--text-bright);
    font-style: normal;
    font-weight: 600;
    font-family: var(--font-body);
}

.feature-chart__row--plain .feature-chart__label,
.feature-chart__row--plain .feature-chart__desc {
    background: transparent;
    color: var(--text-bright);
    font-style: normal;
    font-weight: 600;
    font-family: var(--font-body);
}

.feature-chart__divider {
    display: none;
}

.feature-chart__new {
    color: #ff6b6b !important;
    font-weight: 700;
    font-style: normal;
}

.feature-chart__subright {
    text-align: right;
    font-size: 12px;
    margin-top: 6px;
    color: var(--text-muted);
}

.feature-chart__shot {
    display: inline-block;
    margin-left: 8px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #060610;
    background: var(--sp-accent);
    border: 1px solid var(--sp-accent);
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.feature-chart__shot:hover {
    background: #fff;
    border-color: #fff;
    color: #060610;
}

.feature-chart__section .feature-chart__shot,
.feature-chart__label .feature-chart__shot {
    margin-left: 0;
    margin-top: 6px;
    margin-right: 6px;
}

.feature-chart__section .feature-chart__shot:first-of-type,
.feature-chart__label .feature-chart__shot:first-of-type {
    margin-left: 8px;
}

/* ── Scroll to top ── */
.scroll-to-top {
    position: fixed;
    right: max(24px, env(safe-area-inset-right, 0px));
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(94, 227, 212, 0.35);
    border-radius: 50%;
    background: rgba(6, 6, 16, 0.88);
    color: var(--sp-accent);
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-to-top:hover,
.scroll-to-top:focus-visible {
    background: var(--sp-accent);
    border-color: var(--sp-accent);
    color: #060610;
    box-shadow: 0 10px 32px rgba(94, 227, 212, 0.35);
}

.scroll-to-top:focus-visible {
    outline: 2px solid var(--sp-accent);
    outline-offset: 3px;
}

.scroll-to-top__icon {
    display: block;
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 16px max(24px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px)) max(24px, env(safe-area-inset-left, 0px));
    background: rgba(6, 6, 16, 0.94);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.cookie-banner__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__text {
    font-family: var(--font-display);
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-primary);
}

.cookie-banner__text a {
    color: var(--sp-accent);
    text-decoration: none;
    border-bottom: 1px solid rgba(94, 227, 212, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.cookie-banner__text a:hover {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 10px;
}

.cookie-banner__btn {
    font-size: 14px;
    padding: 10px 20px;
    white-space: nowrap;
}

body.has-cookie-banner .scroll-to-top {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}

/* ── BLOG ARTICLE ── */
.page-main--blog {
    max-width: 990px;
}

.blog-article__header {
    margin-bottom: 40px;
}

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

.blog-article__title-image {
    max-width: 420px;
    margin-bottom: 20px;
}

.blog-article__title-image img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-article__meta {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    margin: 0;
}

.blog-article__figure {
    max-width: 720px;
    margin: 40px auto 0;
    text-align: center;
}

.blog-article__figure img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
