/* ============================================================
   IPTVObserver Design System
   Dark-mode-only authority site for streaming/IPTV.
   Display: Bricolage Grotesque | Body: Geist
   ============================================================ */

:root {
    /* Surfaces */
    --ink-0: #07070C;
    --ink-1: #0F0F18;
    --ink-2: #16161F;
    --ink-3: #1F1F2B;
    --ink-4: #2A2A38;
    --border: #2A2A38;
    --border-soft: rgba(255, 255, 255, 0.06);

    /* Brand */
    --violet: #7C3AED;
    --violet-light: #A78BFA;
    --violet-bright: #8B5CF6;
    --violet-dark: #5B21B6;
    --violet-glow: rgba(124, 58, 237, 0.18);
    --violet-shadow: rgba(124, 58, 237, 0.45);

    /* Text */
    --text-1: #FFFFFF;
    --text-2: #C4C4D0;
    --text-3: #8B8B9A;
    --text-4: #5A5A6B;

    /* Signal */
    --signal-red: #EF4444;
    --signal-amber: #F59E0B;
    --signal-green: #10B981;
    --signal-blue: #3B82F6;

    /* Typography */
    --font-display: 'Bricolage Grotesque', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Geist', ui-sans-serif, system-ui, sans-serif;
    --font-mono: 'Geist Mono', ui-monospace, monospace;

    /* Type scale (fluid) */
    --fs-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
    --fs-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.9375rem);
    --fs-base: 1rem;
    --fs-md: clamp(1.0625rem, 1.03rem + 0.2vw, 1.125rem);
    --fs-lg: clamp(1.25rem, 1.2rem + 0.3vw, 1.375rem);
    --fs-xl: clamp(1.5rem, 1.4rem + 0.5vw, 1.875rem);
    --fs-2xl: clamp(2rem, 1.8rem + 1vw, 2.75rem);
    --fs-3xl: clamp(2.25rem, 1.9rem + 1.75vw, 3.5rem);
    --fs-4xl: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
    --shadow-violet: 0 12px 40px var(--violet-shadow);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    /* Layout */
    --container: 1280px;
    --container-narrow: 880px;
    --header-h: 72px;
    --alert-h: 44px;
}

/* ============================================================
   Reset / Base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
    background: var(--ink-0);
    color-scheme: dark;
    scroll-behavior: smooth;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--ink-0);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.6;
    font-feature-settings: "ss01", "ss02", "cv01";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Background atmosphere */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, var(--violet-glow), transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(91, 33, 182, 0.1), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s var(--ease);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text-1);
}

h1 { font-size: var(--fs-3xl); letter-spacing: -0.035em; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--space-4); color: var(--text-2); }

::selection { background: var(--violet); color: white; }

/* Global focus-visible — accessibility */
:focus-visible {
    outline: 2px solid var(--violet-light);
    outline-offset: 3px;
    border-radius: 4px;
}

button { font-family: inherit; cursor: pointer; }

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .container { padding: 0 var(--space-8); }
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--violet);
    color: white;
    border-radius: var(--radius-sm);
}
.skip-link:focus { left: 1rem; }

/* ============================================================
   Alert Bar (top)
   Designed less manipulatively than TROYPOINT — informational tone
   ============================================================ */

.alert-bar {
    position: relative;
    z-index: 100;
    background: linear-gradient(90deg, var(--ink-2), var(--ink-3), var(--ink-2));
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    font-size: var(--fs-xs);
    overflow: hidden;
}
.alert-bar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: var(--alert-h);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    text-align: center;
}
.alert-bar__dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--signal-amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
    animation: alert-pulse 2.5s infinite;
}
@keyframes alert-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.alert-bar__text { color: var(--text-2); }
.alert-bar__ip { color: var(--text-1); font-family: var(--font-mono); font-size: 0.8125rem; }
.alert-bar__cta {
    color: var(--violet-light);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    background: rgba(124, 58, 237, 0.12);
    margin-left: var(--space-2);
    transition: all 0.15s var(--ease);
}
.alert-bar__cta:hover {
    color: white;
    background: var(--violet);
}

@media (max-width: 768px) {
    .alert-bar__inner { font-size: 0.6875rem; gap: var(--space-2); }
    .alert-bar__ip { display: none; }
}

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(7, 7, 12, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border-soft);
}

.site-header__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--text-1);
    flex-shrink: 0;
    line-height: 0;
}
.site-logo__img,
.site-logo .custom-logo {
    display: block;
    height: 36px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
@media (max-width: 480px) {
    .site-logo__img,
    .site-logo .custom-logo { height: 30px; max-width: 170px; }
}

/* Primary nav */
.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    flex: 1;
    justify-content: center;
}
.primary-nav__item {
    position: relative;
}
.primary-nav__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: 0.625rem var(--space-4);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--text-2);
    border-radius: var(--radius-md);
    transition: all 0.18s var(--ease);
    white-space: nowrap;
}
.primary-nav__link:hover { color: var(--text-1); background: var(--ink-2); }
.primary-nav__link[aria-current="page"] { color: var(--violet-light); }
.primary-nav__caret {
    width: 10px; height: 10px;
    transition: transform 0.18s var(--ease);
}
.primary-nav__item:hover .primary-nav__caret { transform: rotate(180deg); }

/* Dropdown menus */
.primary-nav__submenu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 240px;
    padding: var(--space-2);
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s var(--ease-out);
    z-index: 100;
}
.primary-nav__item:hover .primary-nav__submenu,
.primary-nav__item:focus-within .primary-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.primary-nav__submenu a {
    display: block;
    padding: 0.625rem var(--space-4);
    font-size: var(--fs-sm);
    color: var(--text-2);
    border-radius: var(--radius-sm);
    transition: all 0.15s;
}
.primary-nav__submenu a:hover { background: var(--ink-3); color: var(--violet-light); }

/* Right-side actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}
.header-search {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    color: var(--text-3);
    transition: all 0.18s var(--ease);
    background: transparent;
    border: none;
}
.header-search:hover { background: var(--ink-2); color: var(--text-1); }

/* Buttons — modern, tactile, accessible (min 44px tap target) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: 0.8125rem 1.375rem;
    min-height: 44px;
    font-size: var(--fs-sm);
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), border-color 0.18s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    isolation: isolate;
    user-select: none;
}
.btn:focus-visible {
    outline: 2px solid var(--violet-light);
    outline-offset: 3px;
}
.btn--primary {
    background: linear-gradient(135deg, var(--violet-bright), var(--violet));
    color: white;
    box-shadow:
        0 6px 18px var(--violet-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--violet-light), var(--violet-bright));
    transform: translateY(-1px);
    box-shadow:
        0 10px 28px var(--violet-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-1);
    border-color: var(--border);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: var(--ink-2);
    border-color: var(--ink-4);
    transform: translateY(-1px);
}
.btn--ghost:active { transform: translateY(0); }
.btn--lg {
    padding: 1rem 1.875rem;
    min-height: 52px;
    font-size: var(--fs-md);
    border-radius: var(--radius-md);
}
.btn--block { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-1);
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .primary-nav { display: none; }
    .menu-toggle { display: inline-flex; }
    .header-actions .btn { display: none; }
}

/* Mobile nav (off-canvas) */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(7, 7, 12, 0.95);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease-out);
    overflow-y: auto;
    padding: var(--space-6);
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav__close {
    position: absolute;
    top: var(--space-6); right: var(--space-6);
    width: 40px; height: 40px;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-1);
    display: flex; align-items: center; justify-content: center;
}
.mobile-nav__list { list-style: none; padding: 0; margin: var(--space-12) 0 0; }
.mobile-nav__list > li { border-bottom: 1px solid var(--border-soft); }
.mobile-nav__list a {
    display: block;
    padding: var(--space-4) 0;
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    color: var(--text-1);
    font-weight: 600;
}
.mobile-nav__list .submenu {
    list-style: none;
    padding: 0 0 var(--space-4) var(--space-4);
}
.mobile-nav__list .submenu a {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--text-3);
    padding: var(--space-2) 0;
    font-weight: 400;
}

/* ============================================================
   Hero Section
   ============================================================ */

.hero {
    position: relative;
    padding: var(--space-16) 0 var(--space-20);
    overflow: hidden;
}
.hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-12);
    align-items: center;
}
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: var(--space-10); }
    .hero { padding: var(--space-12) 0 var(--space-16); }
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.375rem 0.875rem;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--violet-light);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-6);
}
.hero__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--violet-light);
    animation: alert-pulse 2s infinite;
}

.hero__title {
    font-size: var(--fs-4xl);
    line-height: 1.04;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-5);
    font-weight: 700;
    max-width: 580px;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--violet-light), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__lead {
    font-size: var(--fs-md);
    color: var(--text-2);
    margin-bottom: var(--space-8);
    max-width: 540px;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}
.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-3);
    font-size: var(--fs-xs);
}
.hero__trust-icon {
    width: 16px; height: 16px;
    color: var(--violet-light);
}

/* Hero media (right side) */
.hero__media {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--ink-2), var(--ink-1));
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, var(--violet-glow), transparent 60%);
    pointer-events: none;
}
.hero__media-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* Floating stat card inside hero media */
.stat-card {
    position: absolute;
    padding: var(--space-4) var(--space-5);
    background: rgba(15, 15, 24, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    min-width: 200px;
}
.stat-card__label {
    font-size: var(--fs-xs);
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.stat-card__value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
}
.stat-card__delta { color: var(--signal-green); font-size: var(--fs-xs); font-weight: 600; }

.stat-card--1 { top: 12%; left: 8%; animation: float 6s ease-in-out infinite; }
.stat-card--2 { top: 42%; right: 6%; animation: float 6s ease-in-out infinite 2s; }
.stat-card--3 { bottom: 12%; left: 14%; animation: float 6s ease-in-out infinite 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================================
   Section structure
   ============================================================ */

.section {
    padding: var(--space-16) 0;
    position: relative;
}
.section--tight { padding: var(--space-12) 0; }

.section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--space-10);
    gap: var(--space-6);
    flex-wrap: wrap;
}
.section__eyebrow {
    color: var(--violet-light);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: var(--space-3);
}
.section__title {
    font-size: var(--fs-2xl);
    max-width: 720px;
}
.section__lead {
    color: var(--text-3);
    max-width: 480px;
    margin: var(--space-3) 0 0;
}

/* ============================================================
   Trending Video Section
   ============================================================ */

.trending {
    background: linear-gradient(180deg, transparent, var(--ink-1));
    padding: var(--space-20) 0;
    position: relative;
}
.trending__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-12);
    align-items: center;
}
@media (max-width: 1024px) {
    .trending__grid { grid-template-columns: 1fr; }
}
.trending__video {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.trending__video iframe {
    width: 100%; height: 100%; border: 0;
}
.trending__video-placeholder {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ink-2), var(--ink-3));
    color: var(--text-4);
    flex-direction: column;
    gap: var(--space-3);
}
.trending__play {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--violet);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-violet);
}
.trending__play svg { color: white; width: 28px; height: 28px; margin-left: 4px; }
.trending__title { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.trending__desc { color: var(--text-2); margin-bottom: var(--space-6); }

/* ============================================================
   Article Grid
   ============================================================ */

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-6);
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
    .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* Article card */
.card {
    position: relative;
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.25s var(--ease);
}
.card:hover {
    border-color: var(--violet);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.card__link { display: block; color: inherit; }
.card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--ink-3);
}
.card__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.card:hover .card__media img { transform: scale(1.05); }
.card__media-placeholder {
    width: 100%; height: 100%;
    background:
        linear-gradient(135deg, var(--ink-3), var(--ink-2)),
        radial-gradient(ellipse at center, var(--violet-glow), transparent);
}
.card__category {
    position: absolute;
    top: var(--space-3); left: var(--space-3);
    padding: 0.25rem 0.625rem;
    background: rgba(7, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    color: var(--violet-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.card__body { padding: var(--space-5); }
.card__title {
    font-size: var(--fs-md);
    line-height: 1.3;
    margin-bottom: var(--space-3);
    font-weight: 600;
    letter-spacing: -0.015em;
}
.card:hover .card__title { color: var(--violet-light); }
.card__date {
    font-size: var(--fs-xs);
    color: var(--text-4);
    font-family: var(--font-mono);
}

/* ============================================================
   Pillar / Category Tiles
   ============================================================ */

.pillar-tiles {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-4);
}
@media (max-width: 1024px) {
    .pillar-tiles { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .pillar-tiles { grid-template-columns: repeat(2, 1fr); }
}
.pillar-tile {
    position: relative;
    padding: var(--space-6) var(--space-5);
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.25s var(--ease);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}
.pillar-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, var(--violet-glow));
    opacity: 0;
    transition: opacity 0.25s;
}
.pillar-tile:hover {
    border-color: var(--violet);
    transform: translateY(-2px);
}
.pillar-tile:hover::before { opacity: 1; }
.pillar-tile__icon {
    width: 36px; height: 36px;
    color: var(--violet-light);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}
.pillar-tile__title {
    font-family: var(--font-display);
    font-size: var(--fs-md);
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-bottom: var(--space-2);
    position: relative;
    z-index: 1;
}
.pillar-tile__count {
    font-size: var(--fs-xs);
    color: var(--text-4);
    font-family: var(--font-mono);
    position: relative;
    z-index: 1;
}

/* ============================================================
   Newsletter — "Starter Kit" reveal (high conversion)
   ============================================================ */

.newsletter { padding: var(--space-16) 0; }

.newsletter__inner {
    position: relative;
    padding: var(--space-12) var(--space-10);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.06), rgba(91, 33, 182, 0.02)),
        var(--ink-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    isolation: isolate;
}
.newsletter__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 0%, var(--violet-glow), transparent 70%),
        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(124, 58, 237, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
/* Decorative floating shapes */
.newsletter__shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet), var(--violet-dark));
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}
.newsletter__shape--1 {
    width: 240px; height: 240px;
    top: -80px; right: -80px;
    animation: newsletter-float 12s ease-in-out infinite;
}
.newsletter__shape--2 {
    width: 180px; height: 180px;
    bottom: -60px; left: 10%;
    animation: newsletter-float 12s ease-in-out infinite 6s;
    background: linear-gradient(135deg, var(--violet-light), var(--violet));
}
@keyframes newsletter-float {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(20px, -20px); }
}

.newsletter__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: var(--space-10);
    align-items: center;
}
@media (max-width: 980px) {
    .newsletter__grid { grid-template-columns: 1fr; gap: var(--space-8); }
    .newsletter__inner { padding: var(--space-10) var(--space-6); }
}
@media (max-width: 600px) {
    .newsletter__inner { padding: var(--space-8) var(--space-5); }
}

.newsletter__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.375rem 0.875rem;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--violet-light);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
}
.newsletter__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--violet-light);
    box-shadow: 0 0 8px var(--violet-light);
    animation: alert-pulse 2s infinite;
}

.newsletter__title {
    font-size: clamp(2rem, 1.6rem + 2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-4);
}
.newsletter__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--violet-light), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.newsletter__lead {
    color: var(--text-2);
    font-size: var(--fs-md);
    line-height: 1.55;
    max-width: 480px;
    margin-bottom: var(--space-6);
}

/* Checklist of "what's inside" */
.newsletter__checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8);
    display: grid;
    gap: var(--space-3);
}
.newsletter__checklist li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--text-2);
    font-size: var(--fs-sm);
    line-height: 1.5;
}
.newsletter__checklist li strong { color: var(--text-1); font-weight: 600; }
.newsletter__checklist svg {
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: 2px;
    color: var(--violet-light);
    padding: 3px;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    box-sizing: content-box;
}

/* Form — modern grid layout, attached input + button feel */
.newsletter__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3);
    max-width: 100%;
    margin-bottom: var(--space-6);
}
@media (max-width: 480px) {
    .newsletter__form { grid-template-columns: 1fr; }
}
.newsletter__field {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
}
.newsletter__field-icon {
    position: absolute;
    left: var(--space-4);
    width: 18px; height: 18px;
    color: var(--text-4);
    pointer-events: none;
}
.newsletter__input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.875rem;
    min-height: 52px;
    background: var(--ink-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    transition: all 0.2s;
}
.newsletter__input:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
    background: var(--ink-2);
}
.newsletter__input::placeholder { color: var(--text-4); }
.newsletter__submit {
    flex-shrink: 0;
    padding: 1rem 1.5rem;
}

/* Social proof: avatars + text */
.newsletter__proof {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding-top: var(--space-5);
    border-top: 1px solid var(--border-soft);
}
.newsletter__avatars {
    display: flex;
    align-items: center;
}
.newsletter__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--ink-1);
    margin-left: -10px;
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0;
}
.newsletter__avatar:first-child { margin-left: 0; }
.newsletter__avatar--count {
    background: var(--ink-3) !important;
    color: var(--text-2) !important;
    font-size: 0.625rem;
    font-family: var(--font-mono);
    border-color: var(--border);
}
.newsletter__proof-text {
    color: var(--text-3);
    font-size: var(--fs-sm);
    margin: 0;
}
.newsletter__proof-text strong { color: var(--text-1); font-weight: 600; }

/* ============================================================
   Kit Card preview (right side of newsletter)
   Stacked tilted card "PDF preview" feel
   ============================================================ */

.newsletter__preview {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    perspective: 1200px;
}
@media (max-width: 980px) {
    .newsletter__preview { margin: 0 auto; max-width: 340px; }
}

.kit-card {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: transform 0.4s var(--ease-out);
}

/* Back card — deepest, just dots */
.kit-card--back {
    background: var(--ink-2);
    transform: translate(28px, 28px) rotate(6deg);
    padding: var(--space-6);
    opacity: 0.6;
}
.kit-card__dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-bottom: var(--space-4);
}
.kit-card__dot--1 { background: var(--signal-red); opacity: 0.6; }
.kit-card__dot--2 { background: var(--signal-amber); opacity: 0.6; }
.kit-card__dot--3 { background: var(--signal-green); opacity: 0.6; }

/* Middle card — bars representing content */
.kit-card--mid {
    background: var(--ink-2);
    transform: translate(14px, 14px) rotate(3deg);
    padding: var(--space-6);
}
.kit-card__label {
    color: var(--text-4);
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
    margin-bottom: var(--space-5);
}
.kit-card__bar {
    height: 8px;
    background: linear-gradient(90deg, var(--ink-4), var(--ink-3));
    border-radius: 4px;
    margin-bottom: var(--space-3);
}

/* Front card — the hero */
.kit-card--front {
    background:
        radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.35), transparent 60%),
        linear-gradient(135deg, var(--ink-2), var(--ink-1));
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(124, 58, 237, 0.4);
    overflow: hidden;
}
.kit-card--front::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
}
.newsletter__preview:hover .kit-card--front  { transform: translate(-8px, -8px); }
.newsletter__preview:hover .kit-card--mid    { transform: translate(20px, 20px) rotate(5deg); }
.newsletter__preview:hover .kit-card--back   { transform: translate(36px, 36px) rotate(9deg); }

.kit-card__brand {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
    color: var(--text-2);
    letter-spacing: -0.01em;
}
.kit-card__mark {
    width: 28px;
    height: 18px;
    background-image: url("../images/logo-mark.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 2px 6px var(--violet-shadow));
}
.kit-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: white;
}
.kit-card__meta {
    display: flex;
    gap: 4px;
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
    color: var(--text-3);
}
.kit-card__seal {
    position: absolute;
    top: var(--space-6); right: var(--space-6);
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.4);
    display: flex; align-items: center; justify-content: center;
    color: var(--violet-light);
}
.kit-card__seal svg { width: 22px; height: 22px; }

/* ============================================================
   Founder Section
   ============================================================ */

.founder {
    padding: var(--space-20) 0;
}
.founder__grid {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: var(--space-16);
    align-items: center;
}
@media (max-width: 1024px) {
    .founder__grid { grid-template-columns: 1fr; gap: var(--space-12); }
}

.founder__photo {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.founder__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ink-0) 0%, transparent 40%);
    z-index: 1;
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__caption {
    position: absolute;
    bottom: var(--space-5); left: var(--space-5);
    z-index: 2;
}
.founder__caption-name {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}
.founder__caption-role {
    font-size: var(--fs-xs);
    color: var(--violet-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.founder__quote {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: var(--space-6);
    color: var(--text-1);
}
.founder__quote-mark {
    font-size: 4rem;
    color: var(--violet);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
    font-family: var(--font-display);
}
.founder__bio { color: var(--text-2); margin-bottom: var(--space-6); }
.founder__credentials {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
}
.founder__cred-value {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--violet-light);
    letter-spacing: -0.02em;
    display: block;
}
.founder__cred-label {
    font-size: var(--fs-xs);
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================================
   Pillar/Page hero (interior pages)
   ============================================================ */

.page-hero {
    position: relative;
    padding: var(--space-20) 0 var(--space-16);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 0%, var(--violet-glow), transparent 60%);
    pointer-events: none;
}
.page-hero__inner {
    position: relative;
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}
.page-hero__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--text-3);
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
    margin-bottom: var(--space-6);
}
.page-hero__breadcrumb a { color: var(--text-3); }
.page-hero__breadcrumb a:hover { color: var(--violet-light); }
.page-hero__title {
    font-size: var(--fs-4xl);
    line-height: 1.04;
    margin-bottom: var(--space-5);
}
.page-hero__lead {
    font-size: var(--fs-md);
    color: var(--text-2);
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================
   Comparison Table (for pillar pages)
   ============================================================ */

.compare-table {
    width: 100%;
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border-collapse: collapse;
}
.compare-table th,
.compare-table td {
    padding: var(--space-4) var(--space-5);
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: var(--fs-sm);
}
.compare-table thead { background: var(--ink-2); }
.compare-table th {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: var(--fs-xs);
}
.compare-table tbody tr:hover { background: var(--ink-2); }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: var(--violet);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: var(--fs-sm);
}
.compare-rating { color: var(--signal-amber); letter-spacing: 0.1em; }

/* ============================================================
   FAQ Accordion
   ============================================================ */

.faq {
    max-width: 760px;
    margin: 0 auto;
}
.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-3);
    background: var(--ink-1);
    overflow: hidden;
    transition: border-color 0.2s;
}
.faq__item[open] { border-color: var(--violet); }
.faq__summary {
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: var(--fs-md);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    letter-spacing: -0.01em;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--violet-light);
    font-weight: 400;
    transition: transform 0.2s;
}
.faq__item[open] .faq__summary::after { content: "−"; }
.faq__body {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--text-2);
    line-height: 1.6;
}

/* ============================================================
   Insider / Membership Section
   ============================================================ */

.insider-card {
    position: relative;
    padding: var(--space-12);
    background:
        linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(91, 33, 182, 0.04)),
        var(--ink-1);
    border: 1px solid var(--violet);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.insider-card::before {
    content: "";
    position: absolute;
    top: -2px; left: -2px; right: -2px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--violet), transparent);
}
.insider-card__badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--violet);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
}
.insider-features {
    list-style: none;
    padding: 0;
    margin: var(--space-6) 0 var(--space-8);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
}
@media (max-width: 600px) { .insider-features { grid-template-columns: 1fr; } }
.insider-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--text-2);
    font-size: var(--fs-sm);
}
.insider-features li::before {
    content: "";
    flex-shrink: 0;
    width: 18px; height: 18px;
    margin-top: 2px;
    background: var(--violet);
    mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
    -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
    margin-top: var(--space-24);
    background: var(--ink-1);
    border-top: 1px solid var(--border);
    padding-top: var(--space-16);
    padding-bottom: var(--space-6);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}
@media (max-width: 1024px) {
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}
@media (max-width: 600px) {
    .site-footer__grid { grid-template-columns: 1fr; }
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    color: var(--text-1);
    margin-bottom: var(--space-5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: var(--space-3); }
.footer-col a {
    color: var(--text-3);
    font-size: var(--fs-sm);
    transition: color 0.15s;
}
.footer-col a:hover { color: var(--violet-light); }

.footer-brand p {
    color: var(--text-3);
    font-size: var(--fs-sm);
    max-width: 320px;
    margin-top: var(--space-5);
}
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-2);
}
.footer-social a:hover { color: var(--violet-light); border-color: var(--violet); }

.site-footer__bottom {
    padding-top: var(--space-6);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
    color: var(--text-4);
    font-size: var(--fs-xs);
}
.site-footer__legal { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.site-footer__legal a { color: var(--text-4); }
.site-footer__legal a:hover { color: var(--violet-light); }

/* ============================================================
   Article body (single tutorial page)
   ============================================================ */

.article {
    max-width: 760px;
    margin: 0 auto;
    padding: var(--space-12) 0;
}
.article h2, .article h3 {
    margin: var(--space-12) 0 var(--space-4);
}
.article p, .article li { color: var(--text-2); line-height: 1.75; font-size: var(--fs-md); }
.article a { color: var(--violet-light); border-bottom: 1px solid rgba(167, 139, 250, 0.4); }
.article a:hover { border-color: var(--violet-light); }
.article blockquote {
    border-left: 3px solid var(--violet);
    padding-left: var(--space-5);
    margin: var(--space-8) 0;
    color: var(--text-1);
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-style: italic;
}
.article img { border-radius: var(--radius-lg); margin: var(--space-8) 0; }
.article pre {
    background: var(--ink-2);
    padding: var(--space-5);
    border-radius: var(--radius-md);
    overflow-x: auto;
    font-family: var(--font-mono);
    font-size: 0.85rem;
}
.article code { font-family: var(--font-mono); background: var(--ink-2); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }

/* ============================================================
   Utilities
   ============================================================ */

.text-center { text-align: center; }
.text-violet { color: var(--violet-light); }
.text-muted { color: var(--text-3); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex { display: flex; gap: var(--space-3); }

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile { display: none; }
}

/* ============================================================
   404 page
   ============================================================ */

.error-404 {
    padding: var(--space-24) 0;
    text-align: center;
}
.error-404__code {
    font-family: var(--font-display);
    font-size: clamp(6rem, 20vw, 12rem);
    line-height: 1;
    background: linear-gradient(120deg, var(--violet-light), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: var(--space-6);
}

/* ============================================================
   Reduce motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    body::before { animation: none; }
}

/* ============================================================
   STATS STRIP — Big credibility numbers
   ============================================================ */

.stats-strip {
    padding: var(--space-10) 0 var(--space-12);
    position: relative;
}
.stats-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(124,58,237,0.04) 50%, transparent);
    pointer-events: none;
}
.stats-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    padding: var(--space-8) var(--space-8);
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}
.stats-strip__grid::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--violet), transparent);
    opacity: 0.4;
}
@media (max-width: 900px) {
    .stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); padding: var(--space-6); }
}
@media (max-width: 480px) {
    .stats-strip__grid { grid-template-columns: 1fr; }
}

.stat-block {
    position: relative;
    padding: 0 var(--space-2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-block + .stat-block::before {
    content: "";
    position: absolute;
    left: calc(var(--space-4) * -1);
    top: 10%; bottom: 10%;
    width: 1px;
    background: var(--border);
}
@media (max-width: 900px) {
    .stat-block + .stat-block::before { display: none; }
}
.stat-block__bar {
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, var(--violet-light), var(--violet));
    border-radius: 2px;
    margin-bottom: var(--space-3);
}
.stat-block__value {
    font-family: var(--font-display);
    font-size: clamp(2rem, 1.6rem + 1.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1;
    color: var(--text-1);
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.stat-block__value span {
    color: var(--violet-light);
    font-size: 0.7em;
}
.stat-block__label {
    font-family: var(--font-display);
    font-size: var(--fs-sm);
    color: var(--text-1);
    font-weight: 600;
    margin-top: var(--space-2);
}
.stat-block__desc {
    font-size: var(--fs-xs);
    color: var(--text-3);
    line-height: 1.4;
}

/* ============================================================
   ACTIVITY TICKER — Horizontal marquee
   ============================================================ */

.ticker {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, var(--ink-1), var(--ink-0));
    padding: var(--space-4) 0;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-10);
}
.ticker::before, .ticker::after {
    content: "";
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--ink-0), transparent); }
.ticker::after  { right: 0; background: linear-gradient(-90deg, var(--ink-0), transparent); }
.ticker__track {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    white-space: nowrap;
    animation: ticker-scroll 60s linear infinite;
    width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.ticker__item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--text-2);
}
.ticker__item strong { color: var(--text-1); font-weight: 600; }
.ticker__sep {
    color: var(--violet);
    font-size: 1.5rem;
    line-height: 1;
}
.ticker__icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.ticker__icon--pulse  { background: var(--signal-green); box-shadow: 0 0 0 4px rgba(16,185,129,0.18); animation: alert-pulse 2s infinite; }
.ticker__icon--check  { background-color: var(--violet); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z' fill='white'/></svg>") center/contain no-repeat; }
.ticker__icon--star   { background-color: var(--signal-amber); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='white'/></svg>") center/contain no-repeat; }
.ticker__icon--video  { background-color: var(--signal-blue); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 5v14l11-7L8 5z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M8 5v14l11-7L8 5z' fill='white'/></svg>") center/contain no-repeat; }
.ticker__icon--bolt   { background-color: var(--signal-amber); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 2L3 14h7l-1 8 10-12h-7l1-8z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13 2L3 14h7l-1 8 10-12h-7l1-8z' fill='white'/></svg>") center/contain no-repeat; }
.ticker__icon--shield { background-color: var(--violet); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M12 1L3 5v6c0 5.5 3.8 10.7 9 12 5.2-1.3 9-6.5 9-12V5l-9-4z' fill='white'/></svg>") center/contain no-repeat; }
.ticker__icon--fire   { background-color: var(--signal-red); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8c0-5.39-2.59-10.21-6.5-13.33z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8c0-5.39-2.59-10.21-6.5-13.33z' fill='white'/></svg>") center/contain no-repeat; }
.ticker__icon--gear   { background-color: var(--text-2); mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='3' fill='white'/><path d='M19.4 15a1.7 1.7 0 0 0 .3 1.8l.1.1a2 2 0 1 1-2.8 2.8l-.1-.1a1.7 1.7 0 0 0-1.8-.3 1.7 1.7 0 0 0-1 1.5V21a2 2 0 1 1-4 0v-.1a1.7 1.7 0 0 0-1.1-1.5 1.7 1.7 0 0 0-1.8.3l-.1.1a2 2 0 1 1-2.8-2.8l.1-.1a1.7 1.7 0 0 0 .3-1.8 1.7 1.7 0 0 0-1.5-1H3a2 2 0 1 1 0-4h.1a1.7 1.7 0 0 0 1.5-1.1 1.7 1.7 0 0 0-.3-1.8l-.1-.1a2 2 0 1 1 2.8-2.8l.1.1a1.7 1.7 0 0 0 1.8.3H9a1.7 1.7 0 0 0 1-1.5V3a2 2 0 1 1 4 0v.1a1.7 1.7 0 0 0 1 1.5 1.7 1.7 0 0 0 1.8-.3l.1-.1a2 2 0 1 1 2.8 2.8l-.1.1a1.7 1.7 0 0 0-.3 1.8V9a1.7 1.7 0 0 0 1.5 1H21a2 2 0 1 1 0 4h-.1a1.7 1.7 0 0 0-1.5 1z' fill='white'/></svg>") center/contain no-repeat; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='3' fill='white'/></svg>") center/contain no-repeat; }

@media (prefers-reduced-motion: reduce) {
    .ticker__track { animation: none; }
}

/* ============================================================
   FEATURED GUIDE — Editor's pick spotlight
   ============================================================ */

.featured-guide {
    padding: var(--space-16) 0;
    background: linear-gradient(180deg, transparent, var(--ink-1));
    position: relative;
}
.featured-guide__head { margin-bottom: var(--space-10); max-width: 720px; }
.featured-guide__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-10);
    align-items: center;
}
@media (max-width: 980px) {
    .featured-guide__layout { grid-template-columns: 1fr; gap: var(--space-8); }
}

.featured-guide__media {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}
.featured-guide__media iframe { width: 100%; height: 100%; border: 0; }
.featured-guide__placeholder {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, var(--violet-glow), transparent 60%),
        linear-gradient(135deg, var(--ink-2), var(--ink-3));
    display: flex; align-items: center; justify-content: center;
    flex-direction: column;
    gap: var(--space-4);
    color: var(--text-4);
}
.featured-guide__play {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--violet);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-violet);
}
.featured-guide__play svg { width: 32px; height: 32px; color: white; margin-left: 4px; }
.featured-guide__placeholder-text { font-size: var(--fs-sm); }
.featured-guide__badge {
    position: absolute;
    top: var(--space-4); right: var(--space-4);
    padding: 0.375rem 0.75rem;
    background: rgba(7, 7, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-family: var(--font-mono);
    color: var(--text-2);
    z-index: 2;
}

.featured-guide__content { padding: 0; }
.featured-guide__tags {
    display: flex; gap: var(--space-2); margin-bottom: var(--space-4);
    flex-wrap: wrap;
}
.tag {
    display: inline-flex;
    padding: 0.25rem 0.625rem;
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    color: var(--text-2);
    font-weight: 500;
    font-family: var(--font-mono);
}
.tag--violet {
    background: rgba(124,58,237,0.12);
    border-color: rgba(124,58,237,0.3);
    color: var(--violet-light);
}
.featured-guide__title {
    font-size: var(--fs-2xl);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -0.025em;
}
.featured-guide__desc {
    color: var(--text-2);
    line-height: 1.55;
    margin-bottom: var(--space-6);
}
.featured-guide__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
}
.featured-guide__stat-value {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--violet-light);
    letter-spacing: -0.02em;
}
.featured-guide__stat-label {
    font-size: var(--fs-xs);
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}
.featured-guide__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ============================================================
   TOP PICK OF THE MONTH — Visual showcase card
   ============================================================ */

.top-pick { padding: var(--space-16) 0; }
.top-pick__card {
    position: relative;
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: var(--space-10);
    padding: var(--space-12);
    background:
        radial-gradient(ellipse at 0% 0%, rgba(124,58,237,0.18), transparent 50%),
        linear-gradient(135deg, var(--ink-2), var(--ink-1));
    border: 1px solid var(--violet);
    border-radius: var(--radius-xl);
    overflow: hidden;
    align-items: center;
}
.top-pick__card::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
}
@media (max-width: 980px) {
    .top-pick__card { grid-template-columns: 1fr; padding: var(--space-8); gap: var(--space-8); }
}

.top-pick__shape {
    position: absolute;
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--violet), transparent 70%);
    filter: blur(80px);
    opacity: 0.35;
    top: -100px; left: -100px;
    pointer-events: none;
}
.top-pick__left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}
.top-pick__rank {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}
.top-pick__rank-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 3rem + 3vw, 6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--violet-light), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 0.9;
    letter-spacing: -0.05em;
}
.top-pick__rank-label {
    font-family: var(--font-display);
    font-size: var(--fs-md);
    color: var(--text-2);
    line-height: 1.1;
    font-weight: 600;
}

/* Mini device mockup with speed graph */
.top-pick__device {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #1a1a24, #0f0f18);
    border: 1px solid var(--border);
    padding: var(--space-3);
    box-shadow: var(--shadow-lg);
    position: relative;
}
.top-pick__device::before {
    content: "";
    position: absolute;
    bottom: -8px; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 4px;
    background: var(--ink-3);
    border-radius: 0 0 8px 8px;
}
.top-pick__device-screen {
    width: 100%; height: 100%;
    background: #07070C;
    border-radius: var(--radius-sm);
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}
.top-pick__device-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--violet-light));
    border-radius: 2px;
    width: 60%;
}
.top-pick__device-graph {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}
.top-pick__device-graph span {
    flex: 1;
    background: linear-gradient(180deg, var(--violet-light), var(--violet-dark));
    border-radius: 2px 2px 0 0;
    min-height: 10%;
}

.top-pick__right { position: relative; }
.top-pick__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--violet-light);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-3);
}
.top-pick__eyebrow-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--signal-green);
    box-shadow: 0 0 8px var(--signal-green);
    animation: alert-pulse 2s infinite;
}
.top-pick__title {
    font-size: var(--fs-2xl);
    line-height: 1.1;
    margin-bottom: var(--space-3);
    letter-spacing: -0.025em;
}
.top-pick__desc {
    color: var(--text-2);
    margin-bottom: var(--space-6);
    max-width: 540px;
}
.top-pick__metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}
@media (max-width: 600px) {
    .top-pick__metrics { grid-template-columns: repeat(2, 1fr); }
}
.top-pick__metric {
    padding: var(--space-4);
    background: rgba(7, 7, 12, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}
.top-pick__metric-label {
    font-size: var(--fs-xs);
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
.top-pick__metric-value {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.015em;
}
.top-pick__metric-value span {
    font-size: 0.6em;
    color: var(--text-3);
    font-weight: 500;
}
.top-pick__metric-value--stars {
    color: var(--signal-amber);
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}
.top-pick__actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ============================================================
   EMAIL CAPTURE POPUP
   Smart triggers: 20s timer, 60% scroll, exit intent
   ============================================================ */

.iptvo-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--space-5);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.iptvo-popup.is-open {
    display: flex;
    opacity: 1;
}
.iptvo-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 7, 12, 0.78);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.iptvo-popup__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-10) var(--space-8) var(--space-8);
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124, 58, 237, 0.15), transparent 70%),
        linear-gradient(180deg, var(--ink-2), var(--ink-1));
    border: 1px solid var(--violet);
    border-radius: var(--radius-xl);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(124, 58, 237, 0.2);
    transform: scale(0.94) translateY(20px);
    transition: transform 0.35s var(--ease-out);
    text-align: center;
}
.iptvo-popup__panel::before {
    content: "";
    position: absolute;
    top: -1px; left: -1px; right: -1px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--violet-light), transparent);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.iptvo-popup.is-open .iptvo-popup__panel {
    transform: scale(1) translateY(0);
}
@media (max-width: 480px) {
    .iptvo-popup__panel { padding: var(--space-8) var(--space-5) var(--space-6); }
}

.iptvo-popup__close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 36px; height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-3);
    cursor: pointer;
    transition: all 0.18s var(--ease);
    z-index: 2;
}
.iptvo-popup__close:hover {
    background: var(--ink-3);
    color: var(--text-1);
    border-color: var(--ink-4);
}

.iptvo-popup__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.18), rgba(91, 33, 182, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.iptvo-popup__icon img {
    width: 56px;
    height: auto;
    filter: drop-shadow(0 2px 8px var(--violet-shadow));
}

.iptvo-popup__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 0.375rem 0.875rem;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: var(--violet-light);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
}
.iptvo-popup__eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--violet-light);
    box-shadow: 0 0 8px var(--violet-light);
    animation: alert-pulse 2s infinite;
}

.iptvo-popup__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 var(--space-3);
    color: var(--text-1);
}
.iptvo-popup__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--violet-light), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.iptvo-popup__desc {
    color: var(--text-2);
    line-height: 1.55;
    margin-bottom: var(--space-6);
    font-size: var(--fs-sm);
}

.iptvo-popup__perks {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6);
    text-align: left;
    display: grid;
    gap: var(--space-2);
}
.iptvo-popup__perks li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--text-2);
    font-size: var(--fs-sm);
    line-height: 1.45;
}
.iptvo-popup__perks li strong { color: var(--text-1); font-weight: 600; }
.iptvo-popup__perks svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    padding: 3px;
    margin-top: 2px;
    color: var(--violet-light);
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    box-sizing: content-box;
}

.iptvo-popup__form {
    display: grid;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.iptvo-popup__field {
    position: relative;
    display: flex;
    align-items: center;
}
.iptvo-popup__field-icon {
    position: absolute;
    left: var(--space-4);
    width: 18px; height: 18px;
    color: var(--text-4);
    pointer-events: none;
}
.iptvo-popup__input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.875rem;
    min-height: 52px;
    background: var(--ink-3);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-1);
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    transition: all 0.2s;
}
.iptvo-popup__input:focus {
    outline: none;
    border-color: var(--violet);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
    background: var(--ink-2);
}

.iptvo-popup__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    width: 100%;
    padding: 1rem 1.5rem;
    min-height: 52px;
    font-family: var(--font-body);
    font-size: var(--fs-md);
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--violet-bright), var(--violet));
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    box-shadow:
        0 6px 18px var(--violet-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.iptvo-popup__submit:hover {
    background: linear-gradient(135deg, var(--violet-light), var(--violet-bright));
    transform: translateY(-1px);
    box-shadow:
        0 10px 28px var(--violet-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.iptvo-popup__submit:active { transform: translateY(0); }
.iptvo-popup__submit:disabled {
    opacity: 0.6;
    cursor: wait;
}
.iptvo-popup__submit-spinner {
    display: none;
    animation: popup-spin 0.8s linear infinite;
}
.iptvo-popup__submit.is-loading .iptvo-popup__submit-text,
.iptvo-popup__submit.is-loading .iptvo-popup__submit-icon { display: none; }
.iptvo-popup__submit.is-loading .iptvo-popup__submit-spinner { display: inline-block; }
@keyframes popup-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.iptvo-popup__error {
    color: var(--signal-red);
    font-size: var(--fs-sm);
    text-align: left;
    min-height: 0;
}
.iptvo-popup__error:not(:empty) {
    padding: var(--space-2) var(--space-3);
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-sm);
    margin-top: var(--space-2);
}

.iptvo-popup__decline {
    display: inline-block;
    background: none;
    border: none;
    color: var(--text-4);
    font-size: var(--fs-xs);
    font-family: var(--font-body);
    cursor: pointer;
    padding: var(--space-2) var(--space-3);
    margin-bottom: var(--space-4);
    text-decoration: underline;
    text-decoration-color: var(--ink-4);
    transition: color 0.15s;
}
.iptvo-popup__decline:hover {
    color: var(--text-2);
    text-decoration-color: var(--text-3);
}

.iptvo-popup__legal {
    font-size: 0.6875rem;
    color: var(--text-4);
    margin: 0;
    line-height: 1.4;
}

/* Success state */
.iptvo-popup__view--success {
    padding: var(--space-2) 0;
}
.iptvo-popup__success-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto var(--space-5);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.08));
    border: 1px solid rgba(16, 185, 129, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--signal-green);
    animation: popup-success-pop 0.5s var(--ease-out);
}
.iptvo-popup__success-icon svg {
    width: 44px;
    height: 44px;
}
@keyframes popup-success-pop {
    0% { transform: scale(0.4); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
    .iptvo-popup,
    .iptvo-popup__panel,
    .iptvo-popup__success-icon,
    .iptvo-popup__eyebrow-dot { animation: none !important; transition: none !important; }
}

/* ============================================================
   TUTORIALS ARCHIVE — Clean, simple, no-icon cards
   ============================================================ */

/* Filter buttons */
.tut-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.tut-filter {
    padding: 10px 18px;
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-2);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tut-filter:hover {
    background: var(--ink-2);
    color: var(--text-1);
    border-color: var(--ink-4);
}

.tut-filter.is-active {
    background: var(--violet);
    color: white;
    border-color: var(--violet-light);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.tut-filter.is-active:hover {
    background: var(--violet-light);
}

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

@media (max-width: 1024px) {
    .tut-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .tut-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Card */
.tut-item {
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.tut-item:hover {
    border-color: var(--violet);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tut-item.is-coming {
    opacity: 0.6;
}

.tut-item.is-coming:hover {
    transform: none;
    border-color: var(--border);
    box-shadow: none;
}

.tut-item__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

/* Top section — colored band with category + read time */
.tut-item__top {
    position: relative;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    min-height: 80px;
}

.tut-item__cat {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(7, 7, 12, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: white;
}

.tut-item__time {
    margin-left: auto;
    font-size: 12px;
    color: var(--text-3);
    font-family: var(--font-mono);
}

.tut-item__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 3px 10px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--signal-amber);
}

.is-coming .tut-item__time {
    display: none;
}

/* Body */
.tut-item__body {
    padding: 24px 20px;
}

.tut-item__title {
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--text-1);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.tut-item:hover .tut-item__title {
    color: var(--violet-light);
}

.tut-item__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-3);
    margin: 0 0 20px;
}

.tut-item__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--violet-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.2s ease;
}

.tut-item:hover .tut-item__cta {
    gap: 10px;
}

.is-coming .tut-item__cta {
    color: var(--text-4);
}

/* Empty state */
.tut-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-3);
}

/* ============================================================
   HOMEPAGE — Premium landing page styles
   ============================================================ */

/* HERO */
.hero {
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}
@media (max-width: 768px) { .hero { padding: 60px 0 50px; } }

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--violet) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}
.hero__glow--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--violet-dark) 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    opacity: 0.3;
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 999px;
    color: var(--violet-light);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    font-family: var(--font-mono);
}
.hero__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--violet-light);
    box-shadow: 0 0 10px var(--violet-light);
    animation: alert-pulse 2s infinite;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 28px;
}
.hero__title em {
    font-style: normal;
    background: linear-gradient(120deg, var(--violet-light), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__lead {
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.6;
    color: var(--text-2);
    max-width: 680px;
    margin: 0 0 36px;
}

.hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero__trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}
.hero__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-3);
}
.hero__trust-item svg {
    color: var(--signal-green);
    flex-shrink: 0;
}

/* CENTERED SECTION HEAD */
.section__head--centered {
    flex-direction: column;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}
.section__head--centered .section__title {
    margin-top: 8px;
}
.section__lead {
    color: var(--text-2);
    line-height: 1.55;
    margin: 12px 0 0;
    font-size: 17px;
}

/* PILLAR TILES — Premium */
.pillar-tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1024px) { .pillar-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pillar-tiles { grid-template-columns: 1fr; } }

.pillar-tile {
    position: relative;
    display: block;
    padding: 28px 24px;
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: 14px;
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
    overflow: hidden;
}
.pillar-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.2), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.pillar-tile:hover {
    border-color: var(--violet);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.pillar-tile:hover::before { opacity: 1; }

.pillar-tile--insider {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(91, 33, 182, 0.05));
    border-color: rgba(124, 58, 237, 0.4);
}

.pillar-tile__icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.12);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.pillar-tile:hover .pillar-tile__icon-wrap {
    background: rgba(124, 58, 237, 0.22);
    transform: scale(1.05) rotate(-3deg);
}
.pillar-tile__icon {
    width: 22px;
    height: 22px;
    color: var(--violet-light);
}
.pillar-tile__title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.pillar-tile__sub {
    position: relative;
    z-index: 1;
    font-size: 13px;
    color: var(--text-4);
}

/* TOP PICK CARD */
.top-pick-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 56px;
    background:
        radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.2), transparent 60%),
        linear-gradient(180deg, var(--ink-1), var(--ink-2));
    border: 1px solid var(--violet);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
@media (max-width: 900px) {
    .top-pick-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}

.top-pick-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--signal-amber);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.top-pick-card__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--text-1);
    margin: 0 0 20px;
}

.top-pick-card__desc {
    color: var(--text-2);
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 32px;
}

.top-pick-card__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px 0;
    margin-bottom: 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.top-pick-card__stat-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--violet-light);
    line-height: 1;
    margin-bottom: 6px;
}
.top-pick-card__stat-label {
    font-size: 12px;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.top-pick-card__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* TOP PICK Visual — Stylized device with channels */
.top-pick-card__visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-pick-card__visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, transparent 60%);
    filter: blur(40px);
}
.top-pick-card__device {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 16 / 11;
    background: linear-gradient(135deg, #1c1235, #0d0820);
    border: 1px solid var(--violet);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(124, 58, 237, 0.4);
}
.top-pick-card__screen-bar {
    height: 6px;
    width: 40%;
    background: linear-gradient(90deg, var(--violet), transparent);
    border-radius: 3px;
    margin-bottom: 16px;
}
.top-pick-card__channels {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.top-pick-card__channel {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
}
.top-pick-card__channel--active {
    background: rgba(124, 58, 237, 0.18);
    border: 1px solid rgba(124, 58, 237, 0.5);
}
.top-pick-card__channel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.top-pick-card__channel-name {
    flex: 1;
    font-size: 13px;
    color: var(--text-1);
    font-weight: 500;
}
.top-pick-card__channel-tag {
    font-size: 10px;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: var(--text-3);
    font-family: var(--font-mono);
    font-weight: 600;
}

/* METHOD GRID */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 900px) { .method-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .method-grid { grid-template-columns: 1fr; } }

.method-card {
    padding: 28px 24px;
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: left;
    transition: all 0.25s ease;
}
.method-card:hover {
    border-color: var(--violet);
    transform: translateY(-3px);
}
.method-card__icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.method-card__title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--text-1);
}
.method-card__desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-3);
    margin: 0;
}

/* HOME TUTORIALS GRID — Compact version of tutorial cards */
.home-tut-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) { .home-tut-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .home-tut-grid { grid-template-columns: 1fr; } }

.home-tut {
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}
.home-tut:hover {
    border-color: var(--violet);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.home-tut__link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.home-tut__top {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border);
}
.home-tut__cat {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(7, 7, 12, 0.6);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.home-tut__body {
    padding: 20px 18px;
}
.home-tut__title {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 10px;
    letter-spacing: -0.015em;
}
.home-tut__desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-3);
    margin: 0 0 14px;
}
.home-tut__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--violet-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* VPN CALLOUT */
.vpn-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    padding: 48px;
    background:
        radial-gradient(ellipse at left, rgba(124, 58, 237, 0.2), transparent 60%),
        linear-gradient(135deg, var(--ink-1), var(--ink-2));
    border: 1px solid var(--violet);
    border-radius: 20px;
    align-items: center;
}
@media (max-width: 768px) {
    .vpn-callout { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; text-align: center; }
}

.vpn-callout__icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(91, 33, 182, 0.08));
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 24px;
    color: var(--violet-light);
}
@media (max-width: 768px) { .vpn-callout__icon { margin: 0 auto; width: 80px; height: 80px; } }
.vpn-callout__icon svg { width: 56px; height: 56px; }
@media (max-width: 768px) { .vpn-callout__icon svg { width: 40px; height: 40px; } }

.vpn-callout__eyebrow {
    color: var(--signal-amber);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.vpn-callout__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.vpn-callout__desc {
    color: var(--text-2);
    line-height: 1.55;
    margin: 0 0 12px;
    font-size: 16px;
}
.vpn-callout__desc:last-of-type { margin-bottom: 24px; }
.vpn-callout__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
@media (max-width: 768px) { .vpn-callout__cta { justify-content: center; } }

/* FOUNDER CARD */
.founder-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 48px;
    background: var(--ink-1);
    border: 1px solid var(--border);
    border-radius: 20px;
}
@media (max-width: 768px) {
    .founder-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; text-align: center; }
}

.founder-card__avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--violet-light), var(--violet-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: white;
    box-shadow: 0 12px 30px var(--violet-shadow);
    border: 3px solid var(--violet-light);
}
@media (max-width: 768px) {
    .founder-card__avatar-circle { margin: 0 auto; width: 80px; height: 80px; font-size: 24px; }
}

.founder-card__eyebrow {
    color: var(--violet-light);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}
.founder-card__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-1);
    margin: 0 0 18px;
}
.founder-card__desc {
    color: var(--text-2);
    line-height: 1.6;
    margin: 0 0 14px;
    font-size: 16px;
}
.founder-card__sig {
    color: var(--violet-light);
    font-style: italic;
    font-size: 15px;
    margin: 18px 0 0;
}

/* INSIDER CTA */
.insider-cta {
    position: relative;
    padding: 64px 48px;
    background:
        radial-gradient(ellipse at center, rgba(124, 58, 237, 0.2), transparent 70%),
        linear-gradient(135deg, var(--ink-1), var(--ink-2));
    border: 1px solid var(--violet);
    border-radius: 24px;
    text-align: center;
    overflow: hidden;
}
@media (max-width: 768px) { .insider-cta { padding: 40px 24px; } }

.insider-cta__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.insider-cta__sparkle {
    position: absolute;
    font-size: 24px;
    color: var(--violet-light);
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}
.insider-cta__sparkle--1 { top: 20px; left: 10%; animation-delay: 0s; }
.insider-cta__sparkle--2 { top: 60%; right: 12%; animation-delay: 1.5s; }
.insider-cta__sparkle--3 { bottom: 20px; left: 70%; animation-delay: 3s; }

.insider-cta__content { position: relative; }
.insider-cta__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.4);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--violet-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-family: var(--font-mono);
}
.insider-cta__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.15;
    letter-spacing: -0.025em;
    max-width: 700px;
    margin: 0 auto 18px;
}
.insider-cta__desc {
    color: var(--text-2);
    line-height: 1.55;
    max-width: 600px;
    margin: 0 auto 32px;
    font-size: 17px;
}
.insider-cta__btn-wrap { margin-bottom: 18px; }
.insider-cta__small {
    color: var(--text-4);
    font-size: 13px;
    margin: 0;
}
