/* =========================================================================
   vwebinars — Hyperline-style theme
   Loaded AFTER editorial.css. Overrides ce-*, ed-*, wgc-*, spk-*, mx-*.
   Aesthetic: off-white paper, near-black ink, periwinkle-indigo accent,
   black pill buttons, dotted-rule eyebrows, faint grid. Modeled on hyperline.co.
   ========================================================================= */

:root {
    /* ---- THE THREE SOURCE COLORS (everything below derives from these) ---- */
    --primary:   #101014;   /* near-black ink, used for headings + solid buttons */
    --secondary: #fbfbfd;   /* off-white page paper */
    --accent:    #5b50e8;   /* periwinkle-indigo, the Hyperline brand accent */

    /* ---- Ink scale (derived from --primary) ---- */
    --ink:      var(--primary); /* near-black, for solid buttons / strong text */
    --ink-head: #1a1a1a;        /* charcoal — Hyperline heading color (softer than pure black) */
    --ink-2:    #2b2b33;
    --ink-3:    #62626c;        /* muted body grey, Hyperline-style */
    --ink-4:    #8a8a94;
    --ink-5:    #b4b4bd;

    /* ---- Surfaces (derived from --secondary) ---- */
    --paper:   #ffffff;
    --paper-2: var(--secondary);
    --paper-3: #f3f3f7;
    --paper-4: #e8e8ee;

    /* ---- Rules / borders ---- */
    --rule:        #e7e7ee;
    --rule-soft:   #f1f1f6;
    --rule-strong: #d6d6df;
    --rule-dot:    #c9c9d4;   /* dotted-separator color */

    /* ---- Brand (derived from --accent) ---- */
    --brand:        var(--accent);
    --brand-2:      #4a3fd4;
    --brand-3:      #3d33b5;
    --brand-soft:   #eeecfd;
    --brand-softer: #f5f4fe;

    /* ---- Accent paired (kept as indigo family, no pink) ---- */
    --violet:   var(--accent);
    --violet-2: #4a3fd4;

    /* Gradients (single-hue indigo wash, no rainbow) */
    --gradient:      linear-gradient(135deg, #6a60ec 0%, #5b50e8 60%, #4a3fd4 100%);
    --gradient-soft: linear-gradient(135deg, #f5f4fe 0%, #eeecfd 100%);

    /* Status */
    --live: #e5484d;
    --live-soft: #fdeeee;
    --success: #2f9e6e;
    --success-soft: #ecf7f1;
    --warn: #d98a0b;
    --warn-soft: #fbf3e6;

    /* Legacy aliases used by editorial.css */
    --navy: var(--primary);
    --navy-2: var(--ink-2);
    --navy-3: var(--ink-3);
    --ochre: var(--accent);
    --ochre-deep: var(--brand-2);
    --ochre-soft: var(--brand-softer);

    /* Type — Hanken Grotesk (Season Sans alternative), single family sitewide */
    --font-sans: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Hanken Grotesk', system-ui, sans-serif;
    --font-display: 'Hanken Grotesk', system-ui, sans-serif;
    --font-mono: ui-monospace, 'SF Mono', Menlo, monospace;

    /* Motion */
    --ease-q: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-x: cubic-bezier(0.16, 1, 0.3, 1);

    /* Elevation — quieter, Hyperline uses very soft shadows */
    --shadow-xs: 0 1px 2px rgba(16, 16, 20, 0.04);
    --shadow-sm: 0 1px 3px rgba(16, 16, 20, 0.05), 0 1px 2px rgba(16, 16, 20, 0.03);
    --shadow-md: 0 4px 10px -2px rgba(16, 16, 20, 0.06), 0 2px 4px -2px rgba(16, 16, 20, 0.04);
    --shadow-lg: 0 14px 30px -8px rgba(16, 16, 20, 0.08), 0 4px 8px -4px rgba(16, 16, 20, 0.04);
    --shadow-xl: 0 28px 56px -16px rgba(16, 16, 20, 0.12), 0 8px 16px -8px rgba(16, 16, 20, 0.05);
    --shadow-brand: 0 12px 32px -12px rgba(91, 80, 232, 0.40);

    /* Radii — Hyperline is moderately rounded; buttons are pills */
    --r-sm: 6px;
    --r-md: 10px;
    --r-lg: 14px;
    --r-xl: 18px;
    --r-2xl: 24px;
    --r-pill: 999px;

    /* Shell */
    --max: 1240px;
    --gutter: 32px;
}

@media (max-width: 768px) {
    :root {
        --gutter: 20px;
    }
}

/* ---------- Reset / base ---------- */
html { scroll-behavior: smooth; }

body {
    background: var(--paper) !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    font-size: 16px;
    line-height: 1.6;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body .container {
    max-width: var(--max) !important;
    padding-left: var(--gutter) !important;
    padding-right: var(--gutter) !important;
}

::selection { background: var(--brand); color: #fff; }

img { max-width: 100%; }

/* =========================================================================
   HEADER
   ========================================================================= */
.ce-header {
    background: rgba(255, 255, 255, 0.85) !important;
    border-bottom: 1px solid var(--rule) !important;
    box-shadow: none !important;
    position: sticky;
    top: 0;
    z-index: 80;
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.ce-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow: 0 1px 0 var(--rule), 0 8px 24px -16px rgba(15, 23, 42, 0.12) !important;
}

.ce-header__inner {
    padding: 14px 0 !important;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ce-header__brand img {
    max-height: 44px !important;
    width: auto;
    filter: none !important;
}

.ce-header__nav {
    gap: 2px !important;
    margin-left: 28px !important;
}

.ce-nav-link {
    font-family: var(--font-sans) !important;
    font-size: 14.5px !important;
    font-weight: 500 !important;
    letter-spacing: -0.005em !important;
    color: var(--ink-3) !important;
    padding: 9px 14px !important;
    border-radius: var(--r-md) !important;
    background: transparent !important;
    text-transform: none !important;
    position: relative;
    transition: color 0.18s var(--ease-q), background 0.18s var(--ease-q);
    border: 0 !important;
}

.ce-nav-link::after { display: none !important; }

.ce-nav-link:hover {
    color: var(--ink) !important;
    background: var(--paper-3) !important;
}

.ce-nav-link.active {
    color: var(--brand) !important;
    background: var(--brand-soft) !important;
}

.ce-nav-link--dropdown svg { margin-left: 4px; transition: transform 0.2s var(--ease-q); }
.ce-nav-dropdown.is-open .ce-nav-link--dropdown svg { transform: rotate(180deg); }

.ce-dropdown-menu {
    background: var(--paper) !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-lg) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 8px !important;
    margin-top: 8px !important;
    min-width: 280px !important;
}

.ce-dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 12px !important;
    border-radius: var(--r-md) !important;
    text-decoration: none !important;
    color: var(--ink-2) !important;
    transition: background 0.15s;
}
.ce-dropdown-item:hover { background: var(--paper-3) !important; color: var(--ink) !important; }
.ce-dropdown-item strong { font-weight: 600; font-size: 14.5px; display: block; color: var(--ink); }
.ce-dropdown-item small { font-size: 12.5px; color: var(--ink-4); }

.ce-dropdown-icon {
    width: 36px; height: 36px;
    border-radius: var(--r-md);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.ce-dropdown-icon--live { background: var(--live-soft); color: var(--live); }
.ce-dropdown-icon--rec  { background: var(--brand-soft); color: var(--brand); }

.ce-header__actions { gap: 10px !important; margin-left: auto; display: flex; align-items: center; }

.ce-search {
    position: relative;
    background: var(--paper-3) !important;
    border: 1px solid transparent !important;
    border-radius: var(--r-pill) !important;
    padding: 0 !important;
    transition: all 0.18s var(--ease-q);
    height: 38px;
    width: 240px;
}
.ce-search:focus-within {
    background: var(--paper) !important;
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 4px var(--brand-soft) !important;
}
.ce-search__input {
    background: transparent !important;
    border: 0 !important;
    color: var(--ink) !important;
    font-size: 14px !important;
    padding: 0 14px 0 40px !important;
    height: 100% !important;
    width: 100%;
    outline: none;
}
.ce-search__input::placeholder { color: var(--ink-5); }
.ce-search__btn {
    position: absolute !important;
    left: 0 !important; top: 0;
    width: 40px !important; height: 100% !important;
    background: transparent !important;
    border: 0 !important;
    color: var(--ink-4) !important;
    display: inline-flex; align-items: center; justify-content: center;
}

.ce-header__icon {
    position: relative;
    width: 38px; height: 38px;
    border-radius: var(--r-md);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-2) !important;
    background: transparent;
    transition: background 0.15s, color 0.15s;
}
.ce-header__icon:hover { background: var(--paper-3); color: var(--ink) !important; }

.ce-header__badge {
    position: absolute;
    top: 2px; right: 2px;
    min-width: 18px; height: 18px;
    padding: 0 5px;
    background: var(--gradient) !important;
    color: #fff;
    border-radius: var(--r-pill);
    font-size: 10.5px;
    font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.4);
}

.ce-header__login {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 18px !important;
    background: var(--ink) !important;
    color: #fff !important;
    border-radius: var(--r-pill) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border: 0 !important;
    transition: transform 0.15s var(--ease-q), background 0.15s, box-shadow 0.2s;
}
.ce-header__login:hover {
    background: var(--brand) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand);
}

.ce-header__toggle {
    background: transparent !important;
    border: 1px solid var(--rule) !important;
    width: 40px; height: 40px;
    border-radius: var(--r-md);
    color: var(--ink) !important;
    padding: 0 !important;
}

/* Mobile nav */
.ce-mobile-nav {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    padding: 16px 0 !important;
}
.ce-mobile-search {
    display: flex; gap: 8px; margin-bottom: 16px;
    background: var(--paper-3);
    border-radius: var(--r-pill);
    padding: 4px;
}
.ce-mobile-search__input { flex: 1; background: transparent; border: 0; padding: 0 14px; font-size: 14px; outline: none; }
.ce-mobile-search__btn {
    background: var(--ink); color: #fff; border: 0;
    width: 36px; height: 36px; border-radius: var(--r-pill);
    display: inline-flex; align-items: center; justify-content: center;
}
.ce-mobile-link {
    display: block; padding: 12px 14px; color: var(--ink-2);
    text-decoration: none; font-weight: 500; font-size: 15px;
    border-radius: var(--r-md);
}
.ce-mobile-link:hover, .ce-mobile-link.active { background: var(--paper-3); color: var(--ink); }
.ce-mobile-link--cta {
    background: var(--ink) !important; color: #fff !important;
    text-align: center; margin-top: 12px;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.ed-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 13px 24px !important;
    border-radius: var(--r-pill) !important;
    font-family: var(--font-sans) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    letter-spacing: -0.005em !important;
    text-transform: none !important;
    text-decoration: none !important;
    border: 1px solid transparent !important;
    cursor: pointer;
    transition: transform 0.15s var(--ease-q), box-shadow 0.2s var(--ease-q), background 0.18s;
    white-space: nowrap;
    line-height: 1;
}

.ed-btn--primary {
    background: var(--ink) !important;
    color: #fff !important;
    box-shadow: var(--shadow-sm);
}
.ed-btn--primary:hover {
    background: var(--brand) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand) !important;
    color: #fff !important;
}

.ed-btn--ghost {
    background: transparent !important;
    color: var(--ink) !important;
    border-color: var(--rule-strong) !important;
}
.ed-btn--ghost:hover {
    background: var(--paper-3) !important;
    border-color: var(--ink) !important;
    color: var(--ink) !important;
    transform: translateY(-1px);
}

.ed-btn--ochre {
    background: var(--gradient) !important;
    color: #fff !important;
    box-shadow: var(--shadow-brand);
}
.ed-btn--ochre:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px -10px rgba(124, 58, 237, 0.5) !important;
    color: #fff !important;
}

/* =========================================================================
   KICKER / SECTION LABELS
   ========================================================================= */
.ed-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans) !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: var(--brand) !important;
    padding: 6px 12px !important;
    background: var(--brand-soft);
    border-radius: var(--r-pill);
    margin-bottom: 16px !important;
}
.ed-kicker::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-soft);
}

/* =========================================================================
   HERO
   ========================================================================= */
.ed-hero {
    position: relative;
    padding: 80px 0 64px !important;
    background: var(--paper) !important;
    overflow: hidden;
    border-bottom: 1px solid var(--rule);
}

/* Decorative gradient blobs */
.ed-hero::before, .ed-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}
.ed-hero::before {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -120px; right: -80px;
}
.ed-hero::after {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    bottom: -200px; left: -120px;
    opacity: 0.18;
}

.ed-hero .container { position: relative; z-index: 1; }

.ed-hero__grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr !important;
    gap: 64px !important;
    align-items: center;
    margin-bottom: 64px;
}

@media (max-width: 960px) {
    .ed-hero__grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    .ed-hero { padding: 56px 0 40px !important; }
}

.ed-hero__lead {}

.ed-hero__h1 {
    font-family: var(--font-display) !important;
    font-size: clamp(40px, 5.8vw, 76px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 0 0 24px !important;
}

.ed-hero__em {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal !important;
    font-weight: 700;
}

.ed-hero__lede {
    font-family: var(--font-sans) !important;
    font-size: clamp(16px, 1.4vw, 19px) !important;
    line-height: 1.6 !important;
    color: var(--ink-3) !important;
    max-width: 560px;
    margin: 0 0 32px !important;
    font-weight: 400;
}

.ed-hero__actions {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-bottom: 0;
}

/* Featured card */
.ed-feature {
    display: block;
    background: var(--paper) !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-2xl) !important;
    padding: 32px !important;
    text-decoration: none !important;
    color: var(--ink) !important;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-q), box-shadow 0.3s var(--ease-q);
}

.ed-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0.5;
    z-index: 0;
}
.ed-feature > * { position: relative; z-index: 1; }

.ed-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 64px -16px rgba(79, 70, 229, 0.2);
    color: var(--ink) !important;
}

.ed-feature__tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--live) !important;
    padding: 5px 10px;
    background: var(--live-soft);
    border-radius: var(--r-pill);
    margin-bottom: 20px;
}
.ed-feature__tag::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--live);
    animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    100% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

.ed-feature__date {
    display: flex; gap: 12px;
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--ink-4);
    margin-bottom: 12px;
    font-weight: 500;
}
.ed-feature__date span:first-child { color: var(--ink-2); font-weight: 600; }

.ed-feature__title {
    font-family: var(--font-display) !important;
    font-size: 26px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
    color: var(--ink) !important;
    margin: 0 0 24px !important;
}

.ed-feature__speaker {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    margin-bottom: 20px;
}

.ed-feature__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--paper-3);
    border: 2px solid var(--paper);
    box-shadow: var(--shadow-sm);
}
.ed-feature__avatar img { width: 100%; height: 100%; object-fit: cover; }

.ed-feature__sp-meta { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.ed-feature__sp-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.ed-feature__sp-role { font-size: 12.5px; color: var(--ink-4); }

.ed-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-left: auto;
}
.ed-countdown__lines { display: none; }
.ed-countdown__num { color: var(--brand); font-weight: 700; }
.ed-countdown__lbl { display: inline-flex; gap: 3px; }
.ed-countdown__lbl-top, .ed-countdown__lbl-bot { display: inline; }
.ed-countdown--live { background: var(--live-soft); border-color: transparent; color: var(--live); }
.ed-countdown--imminent { background: var(--warn-soft); border-color: transparent; color: var(--warn); }

.ed-feature__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 600;
    font-size: 14.5px;
    transition: gap 0.2s var(--ease-q);
}
.ed-feature:hover .ed-feature__cta { gap: 12px; }

/* Stats */
.ed-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 !important;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 28px 0 !important;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 768px) {
    .ed-stats { grid-template-columns: repeat(2, 1fr); padding: 0 !important; }
    .ed-stat { padding: 20px !important; }
}

.ed-stat {
    text-align: center;
    padding: 8px 24px !important;
    border-right: 1px solid var(--rule);
    border: 0 !important;
    border-right: 1px solid var(--rule) !important;
}
.ed-stat:last-child { border-right: 0 !important; }
@media (max-width: 768px) {
    .ed-stat:nth-child(odd) { border-right: 1px solid var(--rule) !important; }
    .ed-stat:nth-child(2) { border-right: 0 !important; }
    .ed-stat:nth-child(1), .ed-stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

.ed-stat__num {
    display: block;
    font-family: var(--font-display) !important;
    font-size: clamp(32px, 3.6vw, 44px) !important;
    font-weight: 700 !important;
    letter-spacing: -0.035em !important;
    line-height: 1 !important;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}
.ed-stat__num sup { font-size: 0.5em; top: -0.8em; }

.ed-stat__label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--ink-4) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.ed-section {
    padding: 96px 0 !important;
    background: var(--paper) !important;
    border: 0 !important;
}

.ed-section:nth-of-type(even) { background: var(--paper-2) !important; }

@media (max-width: 768px) {
    .ed-section { padding: 64px 0 !important; }
}

.ed-section__head {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    gap: 32px !important;
    align-items: end !important;
    margin-bottom: 48px !important;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}

@media (max-width: 768px) {
    .ed-section__head {
        grid-template-columns: 1fr !important;
        align-items: start !important;
        gap: 16px !important;
    }
}

.ed-section__index {
    font-family: var(--font-mono) !important;
    font-size: 12.5px;
    color: var(--ink-4);
    letter-spacing: 0.04em;
    display: flex; align-items: center; gap: 10px;
}
.ed-section__index strong {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 32px; height: 32px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r-md);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
}

.ed-section__title {
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 3.4vw, 44px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 8px 0 12px !important;
}

.ed-section__lede {
    font-size: 16px !important;
    color: var(--ink-3) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    max-width: 640px;
}

.ed-section__link {
    color: var(--brand) !important;
    font-weight: 600 !important;
    font-size: 14.5px !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: var(--r-pill);
    background: var(--brand-soft);
    transition: gap 0.2s var(--ease-q), background 0.18s;
    border: 0 !important;
}
.ed-section__link:hover { background: var(--brand); color: #fff !important; gap: 10px; }

/* =========================================================================
   STEPS (How it works)
   ========================================================================= */
.ed-steps {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important;
    border: 0 !important;
}

@media (max-width: 880px) {
    .ed-steps { grid-template-columns: 1fr !important; }
}

.ed-step {
    background: var(--paper) !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-xl) !important;
    padding: 36px 28px !important;
    position: relative;
    transition: transform 0.25s var(--ease-q), box-shadow 0.25s var(--ease-q), border-color 0.25s;
}
.ed-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}

.ed-step__num {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 48px; height: 48px;
    background: var(--gradient);
    color: #fff;
    border-radius: var(--r-md);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    box-shadow: var(--shadow-brand);
}

.ed-step__title {
    font-family: var(--font-display) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    color: var(--ink) !important;
    margin: 0 0 10px !important;
    line-height: 1.3 !important;
}

.ed-step__desc {
    font-size: 15px !important;
    color: var(--ink-3) !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* =========================================================================
   WEBINAR GRID CARD (.wgc)
   ========================================================================= */
.live-webinar-grid, .recorded-webinar-grid, .ed-listing-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 24px !important;
    margin: 0 !important;
}
.live-webinar-grid > .wgc-item,
.recorded-webinar-grid > .wgc-item,
.ed-listing-grid > .wgc-item {
    width: 100%;
    max-width: 100%;
    flex: none !important;
    padding: 0 !important;
}

.wgc-item { padding: 0 !important; }

.wgc-link {
    text-decoration: none !important;
    color: var(--ink) !important;
    display: block;
}

.wgc {
    background: var(--paper) !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-xl) !important;
    padding: 24px !important;
    display: flex !important;
    gap: 20px !important;
    align-items: flex-start;
    transition: transform 0.2s var(--ease-q), box-shadow 0.2s var(--ease-q), border-color 0.2s;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-xs);
}

.wgc::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.2s;
}
.wgc:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--rule-strong);
}
.wgc:hover::before { opacity: 1; }

.wgc__date-block {
    flex-shrink: 0;
    width: 68px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    padding: 12px 8px;
    text-align: center;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}

.wgc--live .wgc__date-block {
    background: var(--brand-soft);
    border-color: transparent;
}
.wgc--recorded .wgc__date-block {
    background: var(--paper-3);
    border-color: transparent;
}

.wgc__date-day {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
}
.wgc--live .wgc__date-day { color: var(--brand); }

.wgc__date-month, .wgc__date-kicker {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-top: 4px;
}

.wgc__body { flex: 1; min-width: 0; display: flex; flex-direction: column; }

.wgc__top {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 10px;
}

.wgc__badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: var(--r-pill);
}
.wgc__badge--live { background: var(--live-soft); color: var(--live); }
.wgc__badge--live::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--live);
    animation: pulse 1.6s ease-out infinite;
}
.wgc__badge--recorded { background: var(--brand-soft); color: var(--brand); }

.wgc__countdown {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-4);
    margin-left: auto;
}

.wgc__title {
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
    letter-spacing: -0.015em !important;
    color: var(--ink) !important;
    margin: 0 0 12px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wgc__meta {
    display: flex; flex-wrap: wrap; gap: 6px 12px;
    font-size: 13px;
    color: var(--ink-4);
    margin-bottom: 16px;
}
.wgc__meta span { display: inline-flex; align-items: center; gap: 4px; }
.wgc__meta span + span::before {
    content: '·'; color: var(--ink-5); margin-right: 8px;
}
.wgc__meta span:first-child::before { display: none; }

.wgc__footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 12px;
}

.wgc__speaker { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }

.wgc__speaker-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--paper-3);
}
.wgc__speaker-avatar img { width: 100%; height: 100%; object-fit: cover; }
.wgc__speaker-placeholder {
    width: 100%; height: 100%;
    background: var(--gradient);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
}

.wgc__speaker-info { display: flex; flex-direction: column; min-width: 0; }
.wgc__speaker-name {
    font-size: 13px; font-weight: 600; color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wgc__speaker-role {
    font-size: 11.5px; color: var(--ink-4);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.wgc__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s var(--ease-q), color 0.18s;
}
.wgc:hover .wgc__cta { gap: 8px; color: var(--brand-2); }

/* =========================================================================
   STATEMENT / PULL QUOTE
   ========================================================================= */
.ed-statement {
    padding: 96px 0 !important;
    background: var(--ink) !important;
    position: relative;
    overflow: hidden;
    color: #fff !important;
    border: 0 !important;
}
.ed-statement::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.18) 0%, transparent 50%);
}
.ed-statement .container { position: relative; }

.ed-statement__inner {
    text-align: center;
    max-width: 880px;
    margin: 0 auto;
}

.ed-statement__mark {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 0.5;
    color: var(--brand);
    margin-bottom: 16px;
    opacity: 0.6;
}

.ed-statement__quote {
    font-family: var(--font-display) !important;
    font-size: clamp(22px, 2.6vw, 34px) !important;
    line-height: 1.35 !important;
    letter-spacing: -0.02em !important;
    font-weight: 500 !important;
    color: #fff !important;
    margin: 0 0 32px !important;
    font-style: normal !important;
}

.ed-statement__cite {
    font-size: 14px !important;
    color: rgba(255,255,255,0.7) !important;
    letter-spacing: 0.02em;
    font-weight: 500;
}

/* =========================================================================
   SPEAKERS
   ========================================================================= */
.ed-speakers-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    border: 0 !important;
}
@media (max-width: 960px) { .ed-speakers-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 520px) { .ed-speakers-grid { grid-template-columns: 1fr !important; } }

.spk-col { padding: 0 !important; max-width: 100% !important; flex: none !important; }

.spk {
    display: block !important;
    background: var(--paper) !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-xl) !important;
    padding: 0 !important;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--ink) !important;
    transition: transform 0.25s var(--ease-q), box-shadow 0.25s var(--ease-q), border-color 0.25s;
    position: relative;
    height: 100%;
}
.spk:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
    color: var(--ink) !important;
}

.spk__visual {
    aspect-ratio: 1 / 1;
    background: var(--gradient-soft);
    overflow: hidden;
    position: relative;
}
.spk__img-wrap { width: 100%; height: 100%; }
.spk__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-q);
    display: block;
    filter: none !important;
}
.spk:hover .spk__img { transform: scale(1.05); }

.spk__info {
    padding: 20px;
    border-top: 1px solid var(--rule);
    background: var(--paper);
}
.spk__name {
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    letter-spacing: -0.015em !important;
    color: var(--ink) !important;
    margin: 0 0 4px !important;
    line-height: 1.3 !important;
}
.spk__role-meta {
    font-size: 12.5px !important;
    color: var(--ink-4) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.spk__arrow {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brand);
    transform: translateX(8px);
    opacity: 0;
    transition: transform 0.25s var(--ease-q), opacity 0.25s;
    box-shadow: var(--shadow-md);
}
.spk:hover .spk__arrow { transform: translateX(0); opacity: 1; }

/* =========================================================================
   TESTIMONIALS
   ========================================================================= */
.ed-testis {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
    border: 0 !important;
}
@media (max-width: 768px) { .ed-testis { grid-template-columns: 1fr !important; } }

.ed-testi {
    background: var(--paper) !important;
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-xl) !important;
    padding: 32px !important;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s var(--ease-q), box-shadow 0.2s var(--ease-q);
}
.ed-testi:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.ed-testi__stars {
    display: flex; gap: 2px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.ed-testi__quote {
    font-family: var(--font-sans) !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--ink-2) !important;
    margin: 0 0 24px !important;
    font-style: normal !important;
    letter-spacing: -0.005em;
}

.ed-testi__cite {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
}

.ed-testi__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff !important;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
}

.ed-testi__name {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.ed-testi__role {
    display: block;
    font-size: 12.5px;
    color: var(--ink-4);
}

/* =========================================================================
   CTA SECTION
   ========================================================================= */
.ed-cta {
    padding: 96px 0 !important;
    background: var(--paper-2) !important;
    border-top: 1px solid var(--rule);
}
.ed-cta__rule { display: none !important; }

.ed-cta__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 48px !important;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-2xl);
    padding: 56px !important;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.ed-cta__grid::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0.08;
    filter: blur(40px);
}

@media (max-width: 768px) {
    .ed-cta__grid { grid-template-columns: 1fr !important; padding: 36px !important; gap: 28px !important; }
}

.ed-cta__title {
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 3.4vw, 44px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 0 0 16px !important;
    position: relative;
}
.ed-cta__title em {
    font-style: normal !important;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ed-cta__lede {
    font-size: 16px !important;
    color: var(--ink-3) !important;
    margin: 0 !important;
    line-height: 1.6;
    position: relative;
}

.ed-cta__form {
    display: flex;
    gap: 8px;
    background: var(--paper-3);
    padding: 6px;
    border-radius: var(--r-pill);
    margin-bottom: 12px;
    position: relative;
    transition: box-shadow 0.2s;
}
.ed-cta__form:focus-within { box-shadow: 0 0 0 4px var(--brand-soft); }

.ed-cta__form input {
    flex: 1;
    background: transparent !important;
    border: 0 !important;
    padding: 12px 18px !important;
    font-size: 14.5px !important;
    color: var(--ink) !important;
    outline: none !important;
    min-width: 0;
}

.ed-cta__form button {
    background: var(--ink) !important;
    color: #fff !important;
    border: 0 !important;
    padding: 12px 22px !important;
    border-radius: var(--r-pill) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
    white-space: nowrap;
}
.ed-cta__form button:hover {
    background: var(--brand) !important;
    transform: translateY(-1px);
}

.ed-cta__small {
    font-size: 12.5px !important;
    color: var(--ink-4) !important;
    margin: 0 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    position: relative;
}

/* =========================================================================
   EMPTY STATE
   ========================================================================= */
.ed-empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--paper-2);
    border: 1px dashed var(--rule-strong);
    border-radius: var(--r-xl);
    color: var(--ink-3);
}
.ed-empty svg { color: var(--ink-5); margin-bottom: 16px; }
.ed-empty h4 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600;
    color: var(--ink); margin: 0 0 6px;
}
.ed-empty p { font-size: 14px; color: var(--ink-4); margin: 0; }

/* =========================================================================
   FORMS
   ========================================================================= */
.ed-form-row { margin-bottom: 18px; }
.ed-form-row label, .ed-form label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 8px;
    letter-spacing: -0.005em;
}
.ed-form-row--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.ed-input, .ed-textarea, .ed-select,
.form-control {
    width: 100%;
    background: var(--paper) !important;
    border: 1.5px solid var(--rule) !important;
    border-radius: var(--r-md) !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
    outline: none !important;
    box-shadow: none !important;
    line-height: 1.5;
}
.ed-input::placeholder, .ed-textarea::placeholder, .form-control::placeholder {
    color: var(--ink-5);
}
.ed-input:focus, .ed-textarea:focus, .ed-select:focus,
.form-control:focus {
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 4px var(--brand-soft) !important;
    background: var(--paper) !important;
}
.ed-textarea { min-height: 120px; resize: vertical; }

.ed-form-help { font-size: 12.5px; color: var(--ink-4); margin-top: 6px; }

.ed-form__submit, .ed-form__submit--full {
    background: var(--ink) !important;
    color: #fff !important;
    border: 0 !important;
    padding: 13px 26px !important;
    border-radius: var(--r-pill) !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s, box-shadow 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
}
.ed-form__submit:hover, .ed-form__submit--full:hover {
    background: var(--brand) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand);
}
.ed-form__submit--full { width: 100%; justify-content: center; }

/* Checkbox */
.ed-checkbox { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.ed-checkbox input { position: absolute; opacity: 0; }
.ed-checkbox__box {
    width: 18px; height: 18px;
    border: 1.5px solid var(--rule-strong);
    border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    flex-shrink: 0;
}
.ed-checkbox input:checked + .ed-checkbox__box {
    background: var(--brand);
    border-color: var(--brand);
}
.ed-checkbox input:checked + .ed-checkbox__box::after {
    content: '';
    width: 5px; height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.ed-checkbox__label { font-size: 14px; color: var(--ink-2); }

/* Pass field */
.ed-pass-field { position: relative; }
.ed-pass-field .ed-input { padding-right: 44px !important; }
.ed-pass-toggle {
    position: absolute;
    top: 50%; right: 8px;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    background: transparent;
    border: 0;
    color: var(--ink-4);
    border-radius: var(--r-sm);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.ed-pass-toggle:hover { background: var(--paper-3); color: var(--ink); }

/* =========================================================================
   AUTH (login / register)
   ========================================================================= */
.ed-auth { padding: 48px 0 96px !important; background: var(--paper-2) !important; }
.ed-auth__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 880px) {
    .ed-auth__split { grid-template-columns: 1fr; }
    .ed-auth__visual { display: none !important; }
}

.ed-auth__form-side { padding: 56px 48px !important; }
@media (max-width: 600px) { .ed-auth__form-side { padding: 36px 24px !important; } }

.ed-auth__kicker { color: var(--brand) !important; }
.ed-auth__title {
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 3vw, 36px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 12px 0 8px !important;
}
.ed-auth__lede { font-size: 15px !important; color: var(--ink-3) !important; margin: 0 0 32px !important; }

.ed-auth__visual {
    background: var(--gradient);
    color: #fff;
    padding: 48px;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.ed-auth__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.ed-auth__visual > * { position: relative; }

.ed-auth__visual-quote {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: #fff !important;
}
.ed-auth__visual-cite { margin-top: 16px; }
.ed-auth__visual-meta { font-size: 13px; color: rgba(255,255,255,0.8); }
.ed-auth__visual-stats { display: flex; gap: 32px; margin-top: 32px; }
.ed-auth__visual-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
}
.ed-auth__visual-stat span { font-size: 12.5px; color: rgba(255,255,255,0.8); }

.ed-auth__alt { font-size: 14px; color: var(--ink-4); margin-top: 24px; }
.ed-auth__alt a { color: var(--brand); font-weight: 600; }

/* =========================================================================
   LISTING PAGES
   ========================================================================= */
.ed-listing, .ed-page { padding: 32px 0 80px !important; background: var(--paper) !important; }

.ed-listing__bread, .ed-page__bread {
    font-size: 13px; color: var(--ink-4);
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 6px;
}
.ed-listing__bread a, .ed-page__bread a, .breadcrumb a { color: var(--ink-3); text-decoration: none; }
.ed-listing__bread a:hover, .ed-page__bread a:hover { color: var(--brand); }

.ed-listing__h1, .ed-page__title, .ed-page__title--lg {
    font-family: var(--font-display) !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.035em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 8px 0 16px !important;
}
.ed-listing__h1-accent {
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ed-listing__lede, .ed-page__lede {
    font-size: 17px !important;
    color: var(--ink-3) !important;
    margin: 0 0 24px !important;
    max-width: 720px;
    line-height: 1.6;
}

.ed-listing__meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 13.5px;
    color: var(--ink-4);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--rule);
}
.ed-listing__count { font-weight: 600; color: var(--ink-2); }
.ed-listing__pulse {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--live);
    font-weight: 600;
}
.ed-listing__pulse::before {
    content: ''; width: 8px; height: 8px;
    background: var(--live); border-radius: 50%;
    animation: pulse 1.6s ease-out infinite;
}

/* Toolbar */
.ed-toolbar {
    border-radius: var(--r-xl);
    padding: 16px;
    margin-bottom: 24px;
}
.ed-toolbar__inner { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.ed-toolbar__search { flex: 1; min-width: 200px; }
.ed-toolbar__filters, .ed-toolbar__right { display: flex; gap: 8px; flex-wrap: wrap; }

.ed-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
}
.ed-chip:hover { border-color: var(--ink-2); color: var(--ink); }
.ed-chip.active, .ed-chip--active {
    background: var(--ink); color: #fff; border-color: var(--ink);
}
.ed-chip__count {
    font-size: 11.5px;
    padding: 1px 6px;
    background: var(--paper-3);
    border-radius: var(--r-pill);
    color: var(--ink-4);
}
.ed-chip.active .ed-chip__count { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }

/* Select dropdown */
.ed-select-dropdown { position: relative; }
.ed-select-dropdown__trigger {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    font-size: 13.5px;
    color: var(--ink-2);
    cursor: pointer;
    transition: border-color 0.15s;
}
.ed-select-dropdown__trigger:hover { border-color: var(--ink-3); }
.ed-select-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px); right: 0;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    z-index: 30;
    padding: 6px;
}
.ed-select-dropdown__option {
    display: block;
    padding: 8px 12px;
    border-radius: var(--r-sm);
    font-size: 13.5px;
    color: var(--ink-2);
    text-decoration: none;
    cursor: pointer;
}
.ed-select-dropdown__option:hover { background: var(--paper-3); color: var(--ink); }

/* Pagination */
.ed-pagination {
    display: flex; gap: 6px; justify-content: center;
    margin-top: 48px;
    flex-wrap: wrap;
}
.ed-pagination a, .ed-pagination span {
    min-width: 38px; height: 38px;
    padding: 0 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    text-decoration: none;
    transition: all 0.15s;
}
.ed-pagination a:hover { border-color: var(--ink); color: var(--ink); }
.ed-pagination .active, .ed-pagination [aria-current] {
    background: var(--ink); color: #fff; border-color: var(--ink);
}

/* Listing empty */
.ed-listing-empty { padding: 80px 24px; text-align: center; color: var(--ink-3); }

/* Listing layout grid */
.ed-listing-body { padding-top: 0; }
.ed-page-grid, .ed-page-grid--wide {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}
.ed-page-grid--wide { grid-template-columns: 1fr 360px; }
@media (max-width: 960px) {
    .ed-page-grid, .ed-page-grid--wide { grid-template-columns: 1fr; }
}

.ed-rail-block {
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 24px;
}
.ed-rail-block__head {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 16px;
}

/* =========================================================================
   CART / CHECKOUT
   ========================================================================= */
.ed-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 960px) {
    .ed-cart-layout { grid-template-columns: 1fr; }
}

.ed-cart-section {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 28px;
    margin-bottom: 16px;
}
.ed-cart-section__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); }
.ed-cart-section__title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    letter-spacing: -0.02em; margin: 0;
    color: var(--ink);
}
.ed-cart-section__count {
    font-size: 12.5px;
    padding: 3px 10px;
    background: var(--paper-3);
    border-radius: var(--r-pill);
    color: var(--ink-4);
    font-weight: 600;
}

.ed-cart-row {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule-soft);
}
.ed-cart-row:last-child { border-bottom: 0; padding-bottom: 0; }

.ed-cart-row__title {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}
.ed-cart-row__end { display: flex; align-items: center; gap: 16px; }
.ed-cart-row__price { font-size: 16px; font-weight: 700; color: var(--ink); }
.ed-cart-row__remove {
    background: transparent;
    border: 0;
    color: var(--ink-4);
    cursor: pointer;
    width: 32px; height: 32px;
    border-radius: var(--r-sm);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.ed-cart-row__remove:hover { background: var(--live-soft); color: var(--live); }

.ed-cart-summary {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 28px;
    position: sticky;
    top: 88px;
    box-shadow: var(--shadow-sm);
}
.ed-cart-summary__head { margin-bottom: 20px; }
.ed-cart-summary__body { padding-bottom: 20px; border-bottom: 1px solid var(--rule); margin-bottom: 20px; }
.ed-cart-summary__line {
    display: flex; justify-content: space-between;
    font-size: 14px;
    color: var(--ink-3);
    padding: 6px 0;
}
.ed-cart-summary__total {
    display: flex; justify-content: space-between;
    align-items: baseline;
    padding-top: 16px;
    border-top: 2px solid var(--ink);
    margin-bottom: 24px;
}
.ed-cart-summary__total-label { font-size: 14px; color: var(--ink-3); font-weight: 600; }
.ed-cart-summary__total-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
}
.ed-cart-summary__cta, .ed-cart-summary__btn {
    display: flex; justify-content: center; align-items: center;
    width: 100%;
    background: var(--ink);
    color: #fff !important;
    border: 0;
    padding: 14px 24px;
    border-radius: var(--r-pill);
    font-size: 15px; font-weight: 600;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.15s var(--ease-q);
    gap: 6px;
}
.ed-cart-summary__cta:hover, .ed-cart-summary__btn:hover {
    background: var(--brand);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand);
}
.ed-cart-summary__keep {
    display: block;
    text-align: center;
    color: var(--ink-3);
    font-size: 13.5px;
    text-decoration: none;
    margin-top: 12px;
}
.ed-cart-summary__keep:hover { color: var(--brand); }

/* Stepper */
.ed-stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.ed-stepper__item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 500;
    color: var(--ink-4);
}
.ed-stepper__num {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--paper-3);
    color: var(--ink-4);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
    transition: all 0.15s;
}
.ed-stepper__item.is-active .ed-stepper__num,
.ed-stepper__item--active .ed-stepper__num {
    background: var(--ink); color: #fff;
}
.ed-stepper__item.is-active, .ed-stepper__item--active { color: var(--ink); font-weight: 600; }
.ed-stepper__connector {
    width: 48px; height: 1px;
    background: var(--rule);
    margin: 0 12px;
}

/* =========================================================================
   PROSE / GENERIC PAGES
   ========================================================================= */
.ed-prose {
    max-width: 720px;
    color: var(--ink-2);
    line-height: 1.7;
    font-size: 16px;
}
.ed-prose h2, .ed-prose h3 {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -0.02em;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
}
.ed-prose h2 { font-size: 28px; }
.ed-prose h3 { font-size: 20px; }
.ed-prose p { margin: 0 0 16px; }
.ed-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.ed-prose ul, .ed-prose ol { padding-left: 22px; margin: 0 0 16px; }
.ed-prose li { margin: 6px 0; }

.ed-back-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13.5px;
    color: var(--ink-3);
    text-decoration: none;
    margin-bottom: 16px;
}
.ed-back-link:hover { color: var(--brand); }

/* Contact tiles */
.ed-contact-tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}
@media (max-width: 760px) { .ed-contact-tiles { grid-template-columns: 1fr; } }

.ed-contact-tile {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 24px;
    transition: transform 0.2s var(--ease-q), box-shadow 0.2s var(--ease-q);
}
.ed-contact-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ed-contact-tile__icon {
    width: 40px; height: 40px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: var(--r-md);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.ed-contact-tile__label { font-size: 12.5px; color: var(--ink-4); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.ed-contact-tile__value { display: block; margin-top: 4px; font-size: 15px; font-weight: 600; color: var(--ink); }

/* Tiles (about/features) */
.ed-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 880px) { .ed-tiles { grid-template-columns: 1fr; } }
.ed-tile {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.ed-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.ed-tile__num {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700;
    letter-spacing: -0.03em;
    background: var(--gradient);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.ed-tile__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 8px; }
.ed-tile__desc { font-size: 14.5px; color: var(--ink-3); line-height: 1.6; margin: 0; }

/* =========================================================================
   ALERTS
   ========================================================================= */
.ed-alert {
    padding: 14px 18px;
    border-radius: var(--r-md);
    font-size: 14px;
    border: 1px solid transparent;
    margin-bottom: 16px;
}
.ed-alert--success { background: var(--success-soft); color: #047857; border-color: #a7f3d0; }
.ed-alert--error { background: var(--live-soft); color: #b91c1c; border-color: #fecaca; }
.alert-success { background: var(--success-soft) !important; color: #047857 !important; border-color: #a7f3d0 !important; border-radius: var(--r-md) !important; }
.alert-danger { background: var(--live-soft) !important; color: #b91c1c !important; border-color: #fecaca !important; border-radius: var(--r-md) !important; }
.alert-info { background: var(--brand-soft) !important; color: var(--brand-3) !important; border-color: #c7d2fe !important; border-radius: var(--r-md) !important; }
.alert-warning { background: var(--warn-soft) !important; color: #b45309 !important; border-color: #fde68a !important; border-radius: var(--r-md) !important; }

/* =========================================================================
   CONFIRM MODAL
   ========================================================================= */
.ed-confirm__backdrop {
    position: fixed; inset: 0;
    background: rgba(11, 18, 32, 0.6);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.ed-confirm__panel {
    background: var(--paper);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-xl);
    max-width: 440px; width: 100%;
    overflow: hidden;
}
.ed-confirm__body { padding: 28px; }
.ed-confirm__kicker { font-size: 12px; font-weight: 600; color: var(--live); text-transform: uppercase; letter-spacing: 0.08em; }
.ed-confirm__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); margin: 8px 0 8px; }
.ed-confirm__actions { display: flex; gap: 8px; padding: 16px 28px 24px; justify-content: flex-end; }
.ed-confirm__btn {
    padding: 10px 18px; border-radius: var(--r-pill); border: 1px solid var(--rule);
    background: var(--paper); color: var(--ink-2); font-size: 14px; font-weight: 600; cursor: pointer;
}
.ed-confirm__btn--danger { background: var(--live); color: #fff; border-color: var(--live); }
.ed-confirm__btn--primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.ed-confirm__btn--ghost { background: transparent; }

/* =========================================================================
   BOOTSTRAP / GENERIC OVERRIDES (defensive)
   ========================================================================= */
/* ---- Canonical button: .main-btn — pixel-modeled on Hyperline ----
   DARK (default) = header "Book demo". LIGHT (--light) = hero "Book a demo".
   Subtle vertical gradient + top inset highlight = the raised "pillow" look. */
.btn-success, .main-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background-color: #181819 !important;
    background-image: linear-gradient(180deg, #2c2c31 0%, #181819 100%) !important;
    color: #fff !important;
    border: 1px solid #000 !important;
    border-radius: var(--r-pill) !important;
    padding: 0 18px !important;
    min-height: 40px;
    font-family: var(--font-sans);
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1;
    letter-spacing: -0.01em;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(16,16,20,0.18), inset 0 1px 0 rgba(255,255,255,0.12);
    transition: background-image 0.18s var(--ease-q), box-shadow 0.18s var(--ease-q), transform 0.12s var(--ease-q);
}
.btn-success:hover, .main-btn:hover,
.btn-success:focus, .main-btn:focus {
    background-image: linear-gradient(180deg, #343439 0%, #202022 100%) !important;
    color: #fff !important;
    box-shadow: 0 3px 8px -1px rgba(16,16,20,0.22), inset 0 1px 0 rgba(255,255,255,0.14);
}
.btn-success:active, .main-btn:active { transform: scale(0.975); box-shadow: 0 1px 2px rgba(16,16,20,0.18), inset 0 1px 1px rgba(0,0,0,0.18); }
.main-btn:disabled { cursor: not-allowed; background-image: none !important; background-color: var(--paper-4) !important; border-color: var(--paper-4) !important; color: var(--ink-5) !important; box-shadow: none; transform: none; }

/* Light pill variant (Hyperline "Book a demo" hero button) */
.main-btn--light {
    background-color: #f4f4f5 !important;
    background-image: linear-gradient(180deg, #ffffff 0%, #ededf0 100%) !important;
    color: #1a1a1a !important;
    border-color: #e3e3e8 !important;
    box-shadow: 0 1px 2px rgba(16,16,20,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}
.main-btn--light:hover, .main-btn--light:focus {
    background-image: linear-gradient(180deg, #ffffff 0%, #f4f4f6 100%) !important;
    color: #1a1a1a !important;
    border-color: #e3e3e8 !important;
    box-shadow: 0 3px 8px -1px rgba(16,16,20,0.12), inset 0 1px 0 rgba(255,255,255,1);
}
.main-btn--light:active { box-shadow: 0 1px 2px rgba(16,16,20,0.08), inset 0 1px 2px rgba(16,16,20,0.10); }

/* Outline variant */
.main-btn--outline {
    background: transparent !important;
    background-image: none !important;
    color: var(--ink) !important;
    border-color: var(--rule-strong) !important;
    box-shadow: none;
}
.main-btn--outline:hover, .main-btn--outline:focus {
    background: var(--paper-2) !important;
    color: var(--ink) !important;
    border-color: var(--ink) !important;
}

@media (prefers-reduced-motion: reduce) {
    .main-btn, .btn-success { transition: background-image 0.18s, box-shadow 0.18s; }
    .main-btn:active, .btn-success:active { transform: none; }
}

.btn-outline-primary {
    background: transparent !important;
    border: 1.5px solid var(--rule-strong) !important;
    color: var(--ink) !important;
    border-radius: var(--r-pill) !important;
    padding: 8px 18px !important;
    font-weight: 600 !important;
}
.btn-outline-primary:hover { background: var(--ink) !important; color: #fff !important; border-color: var(--ink) !important; }

.breadcrumb {
    background: transparent !important;
    padding: 0 !important;
    font-size: 13px;
    color: var(--ink-4);
}

.card {
    border: 1px solid var(--rule) !important;
    border-radius: var(--r-xl) !important;
    box-shadow: var(--shadow-xs);
}

.modal-content {
    border: 0 !important;
    border-radius: var(--r-xl) !important;
    box-shadow: var(--shadow-xl) !important;
}
.modal-header { border-bottom: 1px solid var(--rule) !important; }
.modal-title { font-family: var(--font-display) !important; letter-spacing: -0.02em; font-weight: 700; }

.form-label { font-size: 13.5px !important; font-weight: 600 !important; color: var(--ink-2) !important; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.ce-footer { background: var(--ink) !important; color: #fff !important; }

.ce-footer__newsletter {
    background: linear-gradient(135deg, var(--brand) 0%, var(--violet) 100%) !important;
    padding: 28px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.ce-footer__newsletter-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.ce-footer__newsletter-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff !important;
}
.ce-footer__newsletter-text span { font-size: 14px; color: rgba(255,255,255,0.85); }

.ce-footer__newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.12);
    padding: 5px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(8px);
}
.ce-footer__newsletter-form input {
    background: transparent !important;
    border: 0 !important;
    padding: 10px 16px !important;
    color: #fff !important;
    font-size: 14px !important;
    min-width: 240px;
    outline: none !important;
}
.ce-footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.ce-footer__newsletter-form button {
    background: #fff !important;
    color: var(--accent) !important;
    border: 0 !important;
    border-radius: var(--r-pill) !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: transform 0.15s var(--ease-q), background 0.15s;
}
.ce-footer__newsletter-form button:hover { background: var(--primary) !important; color: #fff !important; transform: translateY(-1px); }

.ce-footer__top { padding: 56px 0 40px !important; }

.ce-footer__brand img.ce-footer__logo {
    max-height: 40px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}
.ce-footer__tagline {
    font-size: 14px; line-height: 1.6;
    color: rgba(255,255,255,0.7) !important;
    max-width: 360px;
}

.ce-footer__social {
    display: flex; gap: 8px;
    margin-top: 20px;
}
.ce-footer__social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff !important;
    transition: all 0.18s var(--ease-q);
}
.ce-footer__social a:hover {
    background: var(--brand);
    transform: translateY(-2px);
    color: #fff !important;
}

.ce-footer__heading {
    font-family: var(--font-sans) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: rgba(255,255,255,0.55) !important;
    margin-bottom: 18px !important;
}

.ce-footer__links { list-style: none; padding: 0; margin: 0; }
.ce-footer__links li { margin-bottom: 10px; }
.ce-footer__links a {
    color: rgba(255,255,255,0.65) !important;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.15s;
}
.ce-footer__links a:hover { color: #fff !important; }

.ce-footer__contact-row {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.ce-footer__contact-row svg { flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.5); }
.ce-footer__contact-row a { color: rgba(255,255,255,0.7); text-decoration: none; }
.ce-footer__contact-row a:hover { color: #fff; }

.ce-footer__payment {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ce-footer__payment-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    font-weight: 600;
}
.ce-footer__payment-icons {
    display: flex; gap: 8px;
}
.ce-footer__payment-icons span {
    width: 38px; height: 26px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}

.ce-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    background: rgba(0,0,0,0.2);
}
.ce-footer__bottom-inner {
    display: flex; justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.ce-footer__bottom a { color: rgba(255,255,255,0.65); text-decoration: none; }
.ce-footer__bottom a:hover { color: #fff; }
.ce-footer__bottom-links { display: flex; gap: 16px; }

/* Scroll buttons */
.scroll-btns {
    position: fixed;
    right: 24px; bottom: 24px;
    z-index: 60;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s var(--ease-q), transform 0.25s var(--ease-q);
    pointer-events: none;
}
.scroll-btns.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-btn {
    width: 44px; height: 44px;
    background: var(--ink) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.15s var(--ease-q);
}
.scroll-btn:hover {
    background: var(--brand) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}

/* =========================================================================
   REVEAL
   ========================================================================= */
.ed-reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease-q), transform 0.6s var(--ease-q); }
.ed-reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    .ed-reveal { opacity: 1; transform: none; transition: none; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =========================================================================
   ▓▓▓ MX — NEXT-LEVEL HOMEPAGE LAYOUT ▓▓▓
   Standalone `mx-*` namespace. Doesn't fight editorial.css.
   ========================================================================= */

.mx-body { background: var(--paper) !important; color: var(--ink); }

/* ============= HERO (Hyperline-style) ============= */
.hx-hero {
    position: relative;
    padding: clamp(64px, 4vw, 120px) 0 clamp(56px, 7vw, 96px);
    background: var(--secondary);
    overflow: hidden;
    isolation: isolate;
}
/* Very faint square grid, fading downward (Hyperline blueprint feel) */
.hx-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(0deg, var(--rule-soft) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(90deg, var(--rule-soft) 0 1px, transparent 1px 40px);
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 65%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 65%);
}
.hx-hero .container { position: relative; z-index: 1; }
.hx-hero__row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(32px, 5vw, 72px);
    margin-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 940px) {
    .hx-hero__row { grid-template-columns: 1fr; gap: 8px; }
    .hx-hero__art { display: none; }
}

/* Right-side dotted-square mark on a faint square grid (quiet, Hyperline-calm) */
.hx-hero__art { display: flex; justify-content: center; }
.hx-art {
    position: relative;
    width: min(300px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--rule-soft);
    border-radius: var(--r-lg);
    background-color: transparent;
    background-image:
        repeating-linear-gradient(0deg, var(--rule-soft) 0 1px, transparent 1px 30px),
        repeating-linear-gradient(90deg, var(--rule-soft) 0 1px, transparent 1px 30px);
    -webkit-mask-image: radial-gradient(circle at center, #000 55%, transparent 92%);
    mask-image: radial-gradient(circle at center, #000 55%, transparent 92%);
}
/* small, static cluster sitting in generous whitespace */
.hx-art__dots { width: 56%; height: 56%; }

/* Eyebrow: square accent bullet + label + dotted trailing rule */
.hx-eyebrow {
    display: flex; align-items: center; gap: 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-3);
    margin-bottom: 28px;
}
.hx-eyebrow::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 1px;
    flex: none;
}
.hx-eyebrow::after {
    content: '';
    flex: 1;
    max-width: 220px;
    height: 0;
    border-top: 1px dotted var(--rule-dot);
}

.hx-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.022em;
    font-weight: 600;
    color: var(--ink-head);
    margin: 0 0 24px;
    text-wrap: balance;
}

.hx-hero__lede {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--ink-3);
    max-width: 560px;
    line-height: 1.6;
    margin: 0 0 36px;
}

.hx-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: clamp(48px, 6vw, 80px); }

/* ---- Feature row (3 value-prop cards, Hyperline pattern) ---- */
.hx-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px dashed var(--rule-dot);
    padding-top: 36px;
}
.hx-feature {
    position: relative;
    display: block;
    padding: 4px 32px 4px 0;
    text-decoration: none;
    color: var(--ink);
}
.hx-feature + .hx-feature { padding-left: 32px; border-left: 1px dashed var(--rule-dot); }
.hx-feature__icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    border-radius: 9px;
    color: #fff;
    margin-bottom: 16px;
}
.hx-feature__icon--live { background: var(--accent); }
.hx-feature__icon--lib  { background: var(--ink); }
.hx-feature__icon--exp  { background: var(--brand-2); }
.hx-feature__head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}
.hx-feature__head strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.hx-feature__arrow { color: var(--ink-4); transition: transform 0.2s var(--ease-q), color 0.2s; }
.hx-feature:hover .hx-feature__arrow { transform: translateX(4px); color: var(--accent); }
.hx-feature__desc { display: block; font-size: 14px; color: var(--ink-3); line-height: 1.5; max-width: 30ch; }

@media (max-width: 860px) {
    .hx-features { grid-template-columns: 1fr; gap: 0; }
    .hx-feature { padding: 24px 0; border-top: 1px dashed var(--rule-dot); }
    .hx-feature + .hx-feature { padding-left: 0; border-left: 0; }
    .hx-feature:first-child { padding-top: 4px; border-top: 0; }
}

/* ============= MARQUEE (light topic strip, Hyperline-calm) ============= */
.mx-marquee {
    background: var(--primary);
    color: #fff;
    overflow: hidden;
    padding: 18px 0;
}
.mx-marquee__track {
    display: flex; align-items: center; gap: 28px;
    white-space: nowrap;
    animation: mx-scroll 60s linear infinite;
    width: max-content;
}
/* pause when the visitor hovers the strip */
.mx-marquee:hover .mx-marquee__track { animation-play-state: paused; }
@keyframes mx-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.mx-marquee__item {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    flex-shrink: 0;
}
/* asterisk/starburst separator between topics (reference motif) */
.mx-marquee__star {
    display: inline-flex; align-items: center;
    color: rgba(255,255,255,0.55);
    flex-shrink: 0;
    animation: mx-star-spin 9s linear infinite;
}
.mx-marquee__star svg { width: 18px; height: 18px; }
@keyframes mx-star-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
    .mx-marquee__track { animation: none; }
    .mx-marquee__star { animation: none; }
}

/* ============= SECTION SHELL ============= */
.mx-section { padding: 104px 0; background: #fff; position: relative; }
.mx-section--soft { background: #fafafe; }
@media (max-width: 768px) { .mx-section { padding: 72px 0; } }

.mx-section__head { margin-bottom: 56px; max-width: 720px; }
.mx-section__head--row {
    display: flex; justify-content: space-between;
    align-items: end; gap: 32px;
    max-width: 100%;
    flex-wrap: wrap;
}
.mx-section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.mx-section__head--center .mx-eyebrow { margin-left: auto; margin-right: auto; }

/* Hyperline-style eyebrow: square bullet + label + dotted trailing rule */
.mx-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink-3);
    padding: 0;
    background: none;
    border-radius: 0;
    margin-bottom: 22px;
}
.mx-eyebrow::before {
    content: '';
    width: 7px; height: 7px;
    background: var(--accent);
    border-radius: 1px;
    flex: none;
}
.mx-eyebrow::after {
    content: '';
    width: 56px; height: 0;
    border-top: 1px dotted var(--rule-dot);
    flex: none;
}
.mx-section__head--center .mx-eyebrow::after,
.mx-wb-head .mx-eyebrow::after { display: none; }
.mx-eyebrow--live { color: var(--live); }
.mx-eyebrow--live::before { background: var(--live); }
.mx-eyebrow__pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--live);
    animation: pulse 1.6s ease-out infinite;
}

.mx-section__h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--ink-head);
    margin: 0 0 16px;
}
.mx-section__lede {
    font-size: 17px;
    color: var(--ink-3);
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

.mx-link {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 18px;
    background: var(--ink);
    color: #fff !important;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s var(--ease-q);
}
.mx-link:hover {
    background: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}

.mx-inline-link {
    color: var(--brand) !important;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

/* ============= BENTO ============= */
.mx-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(220px, auto);
    gap: 20px;
}
.mx-bento__cell {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-2xl);
    padding: 32px;
    display: flex; flex-direction: column;
    transition: transform 0.25s var(--ease-q), box-shadow 0.25s var(--ease-q), border-color 0.25s;
    box-shadow: var(--shadow-xs);
    position: relative;
    overflow: hidden;
}
.mx-bento__cell:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--ink-5);
}
.mx-bento__cell--lead {
    grid-column: span 3;
    grid-row: span 2;
    background: linear-gradient(135deg, #fff 0%, #f5f3ff 100%);
}
.mx-bento__cell--accent {
    grid-column: span 3;
    background: linear-gradient(135deg, var(--brand) 0%, var(--violet) 100%);
    color: #fff;
    border-color: transparent;
}
.mx-bento__cell--accent h3, .mx-bento__cell--accent p { color: #fff; }
.mx-bento__cell--accent p { color: rgba(255,255,255,0.85); }
.mx-bento__cell--accent:hover { border-color: transparent; }
.mx-bento__cell--dark {
    grid-column: span 3;
    background: var(--ink);
    color: #fff;
    border-color: transparent;
}
.mx-bento__cell--dark h3, .mx-bento__cell--dark p { color: #fff; }
.mx-bento__cell--dark p { color: rgba(255,255,255,0.75); }
.mx-bento__cell:not(.mx-bento__cell--lead):not(.mx-bento__cell--accent):not(.mx-bento__cell--dark) {
    grid-column: span 3;
}

@media (max-width: 880px) {
    .mx-bento { grid-template-columns: 1fr; }
    .mx-bento__cell, .mx-bento__cell--lead, .mx-bento__cell--accent, .mx-bento__cell--dark { grid-column: span 1; grid-row: auto; }
}

.mx-bento__icon {
    width: 44px; height: 44px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: var(--r-md);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.mx-bento__icon--light {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.mx-bento__cell h3 {
    font-family: var(--font-display);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
}
.mx-bento__cell--lead h3 { font-size: 28px; }
.mx-bento__cell p {
    font-size: 15px;
    color: var(--ink-3);
    line-height: 1.6;
    margin: 0;
}
.mx-bento__badges {
    display: flex; gap: 6px; flex-wrap: wrap;
    margin-top: auto;
    padding-top: 24px;
}
.mx-bento__badges span {
    padding: 5px 12px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
}
.mx-bento__big-num {
    font-family: var(--font-display);
    font-size: 88px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.9;
    color: #fff;
    margin-bottom: 16px;
}
.mx-bento__big-num sup { font-size: 0.45em; top: -0.7em; opacity: 0.85; }

/* ============= WEBINAR CARDS ============= */
.mx-wgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 960px) { .mx-wgrid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .mx-wgrid { grid-template-columns: 1fr; } }

/* ============= WEBINAR CARD (reference: client-details card) ============= */
.wc {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    transition: transform 0.25s var(--ease-q), box-shadow 0.25s var(--ease-q);
}
.wc:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* top: avatar + name + status pill */
.wc__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.wc__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--paper-3);
    border: 1px solid var(--rule);
}
.wc__avatar img { width: 100%; height: 100%; object-fit: cover; }
.wc__id { min-width: 0; display: flex; flex-direction: column; gap: 3px; justify-content: center; }
.wc__name {
    font-family: var(--font-display);
    font-size: 15.5px; font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink-head);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.wc__cat {
    font-size: 12.5px; font-weight: 500;
    color: var(--ink-4);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* session title as its own row */
.wc__title {
    font-family: var(--font-display);
    font-size: 16px; font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
    color: var(--ink-head);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.wc__title--row { margin: 0 0 16px; min-height: 2.6em; }
.wc__pill {
    display: inline-flex; align-items: center; gap: 5px;
    align-self: flex-start;
    padding: 3px 9px;
    border-radius: var(--r-pill);
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.04em;
}
.wc__pill--live { background: var(--live-soft); color: var(--live); }
.wc__pill--rec  { background: var(--brand-soft); color: var(--brand); }
.wc__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--live); animation: pulse 1.6s ease-out infinite; }

/* inner tinted panel: session title */
.wc__panel {
    display: flex; flex-direction: column; gap: 7px;
    background: var(--brand-softer);
    border-radius: var(--r-lg);
    padding: 16px;
    margin-bottom: 16px;
}
.wc__panel .wc__title { margin: 0; }

/* label / value rows */
.wc__row {
    display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
    padding: 9px 2px;
    border-bottom: 1px solid var(--rule-soft);
}
.wc__row-label { font-size: 13px; font-weight: 500; color: var(--ink-4); flex-shrink: 0; }
.wc__row-value {
    font-size: 13.5px; font-weight: 500; color: var(--ink-2);
    text-align: right;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* bottom: icon button + gradient CTA */
.wc__foot { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.wc__icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--rule);
    color: var(--ink-2);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-xs);
    text-decoration: none;
    transition: border-color 0.18s, color 0.18s, transform 0.12s var(--ease-q);
}
.wc__icon-btn:hover { border-color: var(--ink); color: var(--ink); }
.wc__icon-btn:active { transform: scale(0.95); }
/* tear-off calendar badge (left of CTA on live cards) */
.wc__cal {
    position: relative;
    width: 50px; height: 50px;
    flex-shrink: 0;
    margin-top: 5px;
    background: #fff;
    border: 1px solid var(--rule-strong);
    border-radius: 8px;
    overflow: visible;
    display: flex; flex-direction: column;
    align-items: center; justify-content: flex-end;
    box-shadow: var(--shadow-sm);
    padding-bottom: 0;
}
/* spiral binding rings straddling the top edge */
.wc__cal-rings {
    position: absolute; top: -3px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 4px;
    z-index: 2;
}
.wc__cal-rings i {
    width: 3px; height: 8px;
    background: var(--ink-4);
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(16,16,20,0.18);
}
/* big day number */
.wc__cal-num {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink-head);
}
.wc__cal--today .wc__cal-num { font-size: 15px; }
/* red bottom band */
.wc__cal-band {
    width: 100%;
    background: var(--live);
    color: #fff;
    font-size: 7.5px; font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    padding: 3px 0;
    line-height: 1;
    border-radius: 0 0 8px 8px;
}
/* on-demand variant: indigo band + clock icon instead of a number */
.wc__cal--rec .wc__cal-num {
    margin-top: 13px; margin-bottom: 4px;
    color: var(--accent);
    display: inline-flex; align-items: center;
}
.wc__cal--rec .wc__cal-band { background: var(--accent); font-size: 6.5px; letter-spacing: 0.04em; }
.wc__cal--rec .wc__cal-rings i { background: var(--ink-5); }
.wc__cta {
    flex: 1;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    height: 46px;
    border-radius: var(--r-pill);
    background-image: linear-gradient(100deg, var(--accent) 0%, #7a6ff0 50%, var(--brand-2) 100%);
    color: #fff !important;
    font-size: 14.5px; font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none !important;
    box-shadow: 0 4px 14px -4px rgba(91, 80, 232, 0.55);
    transition: transform 0.12s var(--ease-q), box-shadow 0.18s var(--ease-q), filter 0.18s;
}
.wc__cta:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(91, 80, 232, 0.6); filter: brightness(1.04); color: #fff !important; }
.wc__cta:active { transform: scale(0.985); }
.wc__cta--rec { background-image: linear-gradient(100deg, #2b2b33 0%, #181819 100%); box-shadow: 0 4px 14px -4px rgba(16,16,20,0.4); }
.wc__cta--rec:hover { box-shadow: 0 8px 20px -6px rgba(16,16,20,0.45); }

@media (prefers-reduced-motion: reduce) {
    .wc, .wc__cta, .wc__icon-btn { transition: none; }
    .wc:hover, .wc__cta:hover { transform: none; }
}


/* ============= STEPS ============= */
.mx-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}
.mx-steps__line {
    position: absolute;
    top: 38px; left: 16%; right: 16%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand-soft), transparent);
}
@media (max-width: 880px) {
    .mx-steps { grid-template-columns: 1fr; }
    .mx-steps__line { display: none; }
}
.mx-step {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: transform 0.25s var(--ease-q), box-shadow 0.25s var(--ease-q), border-color 0.25s;
}
.mx-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.mx-step__num {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    border: 3px solid #fff;
    box-shadow: var(--shadow-md);
}
.mx-step__icon {
    width: 56px; height: 56px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: var(--r-lg);
    display: inline-flex; align-items: center; justify-content: center;
    margin: 16px auto 20px;
}
.mx-step h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink-head);
    margin: 0 0 8px;
}
.mx-step p {
    font-size: 14.5px;
    color: var(--ink-3);
    line-height: 1.6;
    margin: 0;
}

/* ============= STAT BAND ============= */
.mx-statband {
    padding: 80px 0;
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mx-statband::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(91, 80, 232, 0.34) 0%, transparent 42%),
        radial-gradient(circle at 80% 70%, rgba(106, 96, 236, 0.20) 0%, transparent 42%);
}
.mx-statband .container { position: relative; }
.mx-statband__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
@media (max-width: 768px) {
    .mx-statband__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .mx-statband { padding: 56px 0; }
}
.mx-stat {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.mx-stat:last-child { border-right: 0; }
@media (max-width: 768px) {
    .mx-stat { border-right: 0; padding: 0; }
}
.mx-stat__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(38px, 4.4vw, 56px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    color: #fff;
    margin-bottom: 10px;
}
.mx-stat__label {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0;
}

/* ============= SPEAKERS ============= */
.mx-speakers {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) { .mx-speakers { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .mx-speakers { grid-template-columns: repeat(2, 1fr); } }

.mx-spk {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    overflow: hidden;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.25s var(--ease-q), box-shadow 0.25s var(--ease-q), border-color 0.25s;
    display: block;
}
.mx-spk:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
    color: var(--ink);
}
.mx-spk__visual {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gradient-soft);
}
.mx-spk__visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-q);
}
.mx-spk:hover .mx-spk__visual img { transform: scale(1.07); }
.mx-spk__info { padding: 16px; border-top: 1px solid var(--rule); }
.mx-spk__info h4 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin: 0 0 3px;
    line-height: 1.3;
}
.mx-spk__info span {
    font-size: 12px;
    color: var(--ink-4);
}

/* ============= TESTIMONIALS ============= */
.mx-testis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 960px) { .mx-testis { grid-template-columns: 1fr; } }

.mx-testi {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-xl);
    padding: 32px;
    position: relative;
    transition: transform 0.2s var(--ease-q), box-shadow 0.2s var(--ease-q);
}
.mx-testi:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.mx-testi__quote {
    color: var(--brand);
    opacity: 0.2;
    margin-bottom: 16px;
}
.mx-testi p {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--ink-2);
    margin: 0 0 24px;
    letter-spacing: -0.005em;
}
.mx-testi__cite {
    display: flex; align-items: center; gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
}
.mx-testi__av {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a60ec, #5b50e8);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}
.mx-testi__av--2 { background: linear-gradient(135deg, #5b50e8, #4a3fd4); }
.mx-testi__av--3 { background: linear-gradient(135deg, #4a3fd4, #3d33b5); }
.mx-testi__cite strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.mx-testi__cite span {
    font-size: 12.5px;
    color: var(--ink-4);
}

/* ============= FAQ ============= */
.mx-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
@media (max-width: 880px) {
    .mx-faq-grid { grid-template-columns: 1fr; gap: 32px; }
}
.mx-faq-side { position: sticky; top: 100px; }
.mx-faq { display: flex; flex-direction: column; gap: 12px; }
.mx-faq__item {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mx-faq__item[open] {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
}
.mx-faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.mx-faq__item summary::-webkit-details-marker { display: none; }
.mx-faq__chev { transition: transform 0.25s var(--ease-q); color: var(--ink-3); flex-shrink: 0; }
.mx-faq__item[open] .mx-faq__chev { transform: rotate(180deg); color: var(--brand); }
.mx-faq__body {
    padding: 0 24px 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--ink-3);
}

/* ============= MEGA CTA ============= */
.mx-megacta { padding: 80px 0 120px; background: #fff; }
.mx-megacta__inner {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    background: var(--ink);
    padding: 80px 48px;
    isolation: isolate;
}
@media (max-width: 768px) { .mx-megacta__inner { padding: 56px 28px; } }

.mx-megacta__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.mx-megacta__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}
.mx-megacta__blob--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #6a60ec 0%, transparent 70%);
    top: -180px; right: -120px;
    opacity: 0.6;
}
.mx-megacta__blob--2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #4a3fd4 0%, transparent 70%);
    bottom: -200px; left: -100px;
    opacity: 0.4;
}
.mx-megacta__grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.mx-megacta__content {
    position: relative;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    color: #fff;
}
.mx-megacta__kicker {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c7d2fe;
    padding: 6px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-pill);
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.mx-megacta__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4.4vw, 52px);
    line-height: 1.06;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}
.mx-megacta__title em {
    font-style: normal;
    color: #c7c2fb;
}
.mx-megacta__lede {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin: 0 0 32px;
}
.mx-megacta__form {
    display: flex; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px;
    border-radius: var(--r-pill);
    backdrop-filter: blur(12px);
    max-width: 480px;
    margin: 0 auto 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mx-megacta__form:focus-within {
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}
.mx-megacta__form input {
    flex: 1;
    background: transparent;
    border: 0;
    padding: 12px 18px;
    font-size: 14.5px;
    color: #fff;
    outline: none;
    min-width: 0;
}
.mx-megacta__form input::placeholder { color: rgba(255,255,255,0.5); }
.mx-megacta__form button {
    background: #fff;
    color: var(--ink);
    border: 0;
    padding: 12px 22px;
    border-radius: var(--r-pill);
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
    transition: transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.mx-megacta__form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(255,255,255,0.2);
}
.mx-megacta__small {
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* ============= EMPTY ============= */
.mx-empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--paper-2);
    border: 1px dashed var(--rule-strong);
    border-radius: var(--r-xl);
    color: var(--ink-3);
}
.mx-empty svg { color: var(--ink-5); margin-bottom: 16px; }
.mx-empty h4 {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 700;
    color: var(--ink); margin: 0 0 6px;
}
.mx-empty p { font-size: 14px; color: var(--ink-4); margin: 0; }

/* =========================================================================
   ▓▓▓ WCV — Webinar Card v2 (speaker-image hero) ▓▓▓
   ========================================================================= */
.wgc-item { padding: 12px !important; }

.wcv {
    display: block;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--ink) !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.32s var(--ease-q), box-shadow 0.32s var(--ease-q), border-color 0.32s;
    height: 100%;
    position: relative;
    isolation: isolate;
}
.wcv:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.18), 0 16px 32px -16px rgba(79, 70, 229, 0.18);
    border-color: var(--brand);
    color: var(--ink) !important;
}

/* ---- HERO (speaker image) ---- */
.wcv__hero {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #1e1b4b 0%, #4c1d95 50%, #831843 100%);
}

.wcv__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 0.7s var(--ease-q), filter 0.4s;
    filter: saturate(1.05) contrast(1.02);
    display: block;
}
.wcv:hover .wcv__img {
    transform: scale(1.08);
    filter: saturate(1.15) contrast(1.05);
}

.wcv__img-placeholder {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-display);
    font-size: 96px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

/* Gradient tint over image for readability */
.wcv__tint {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.55) 0%, transparent 28%, transparent 50%, rgba(11, 18, 32, 0.88) 100%);
    pointer-events: none;
}

/* Animated diagonal shine on hover */
.wcv__shine {
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.18) 50%, transparent 70%);
    transform: skewX(-20deg);
    transition: left 0.9s var(--ease-q);
    pointer-events: none;
}
.wcv:hover .wcv__shine { left: 130%; }

/* ---- Top-left badge ---- */
.wcv__badge {
    position: absolute;
    top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}
.wcv--live .wcv__badge { color: var(--live); }
.wcv--rec .wcv__badge { color: var(--brand); }

.wcv__badge-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    animation: wcv-pulse 1.6s ease-out infinite;
}
@keyframes wcv-pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
    100% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
}

/* ---- Top-right sticker (date / duration) ---- */
.wcv__sticker {
    position: absolute;
    top: 14px; right: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    min-width: 58px;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.4);
}
.wcv__sticker strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--ink);
}
.wcv__sticker span {
    display: block;
    margin-top: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--ink-4);
}
.wcv--rec .wcv__sticker strong {
    background: linear-gradient(135deg, var(--brand), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---- Hover play button ---- */
.wcv__play {
    position: absolute;
    top: 50%; left: 50%;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    padding-left: 4px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.7);
    transition: opacity 0.32s var(--ease-q), transform 0.32s var(--ease-q);
    z-index: 2;
    pointer-events: none;
}
.wcv:hover .wcv__play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ---- Speaker chip on image bottom ---- */
.wcv__sp {
    position: absolute;
    left: 16px; right: 16px; bottom: 14px;
    z-index: 2;
    color: #fff;
}
.wcv__sp-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wcv__sp-role {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.82);
    letter-spacing: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---- Body ---- */
.wcv__body {
    padding: 22px 22px 20px;
    display: flex; flex-direction: column;
}

.wcv__meta {
    display: flex; flex-wrap: wrap; gap: 8px 14px;
    margin-bottom: 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-4);
}
.wcv__meta-item {
    display: inline-flex; align-items: center; gap: 5px;
}
.wcv__meta-item svg { opacity: 0.7; }
.wcv__meta-item--accent {
    padding: 3px 10px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.wcv--live .wcv__meta-item--accent {
    background: var(--live-soft);
    color: var(--live);
}

.wcv__title {
    font-family: var(--font-display) !important;
    font-size: 18px !important;
    line-height: 1.32 !important;
    letter-spacing: -0.02em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 0 0 18px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
.wcv:hover .wcv__title { color: var(--brand) !important; }

.wcv__cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule-soft);
}
.wcv__cta-label {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.wcv__cta-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--paper-3);
    color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.28s var(--ease-q);
    flex-shrink: 0;
}
.wcv:hover .wcv__cta-arrow {
    background: var(--ink);
    color: #fff;
    transform: translateX(2px) rotate(-45deg);
}

/* Live variant accent line on top edge */
.wcv--live::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--live), #f97316, var(--live));
    background-size: 200% 100%;
    z-index: 3;
    animation: wcv-bar 3s ease-in-out infinite;
}
.wcv--rec::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--violet), #ec4899);
    background-size: 200% 100%;
    z-index: 3;
    animation: wcv-bar 4s ease-in-out infinite;
}
@keyframes wcv-bar {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile tweaks */
@media (max-width: 540px) {
    .wgc-item { padding: 8px !important; }
    .wcv__hero { aspect-ratio: 16 / 11; }
    .wcv__body { padding: 18px 18px 16px; }
    .wcv__title { font-size: 16.5px !important; }
    .wcv__sticker { padding: 8px 10px; min-width: 50px; }
    .wcv__sticker strong { font-size: 19px; }
}

/* =========================================================================
   ▓▓▓ MX-WEBINARS — Combined Live + Recorded section ▓▓▓
   ========================================================================= */
.mx-webinars {
    padding: 2rem 0;
    background: #fafafe;
    position: relative;
}
@media (max-width: 768px) { .mx-webinars { padding: 64px 0; } }

.mx-wb-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.mx-wb-head .mx-eyebrow { margin-left: auto; margin-right: auto; }
.mx-wb-h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 600;
    color: var(--ink-head);
    margin: 0 0 18px;
}
.mx-wb-lede {
    font-size: 17px;
    color: var(--ink-3);
    line-height: 1.6;
    margin: 0;
}

.mx-wb-block { margin-bottom: 8px; }

.mx-wb-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.mx-wb-block__title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.mx-wb-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.mx-wb-tag--live {
    background: var(--live-soft);
    color: var(--live);
}
.mx-wb-tag--rec {
    background: var(--brand-soft);
    color: var(--brand);
}
.mx-wb-tag__pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--live);
    animation: pulse 1.6s ease-out infinite;
}

.mx-wb-block__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0;
    line-height: 1.1;
}

.mx-wb-block__sep {
    width: 1px;
    height: 22px;
    background: var(--rule-strong);
}

.mx-wb-block__caption {
    font-size: 13.5px;
    color: var(--ink-4);
    font-weight: 500;
}

@media (max-width: 640px) {
    .mx-wb-block__sep, .mx-wb-block__caption { display: none; }
}

/* Divider between live & recorded */
.mx-wb-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 64px 0 56px;
    color: var(--ink-4);
}
.mx-wb-divider span {
    flex: 1;
    height: 0;
    background: none;
    border-top: 1px dashed var(--rule-dot);
}
.mx-wb-divider em {
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink-4);
    padding: 0 14px;
    background: var(--secondary);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .mx-wb-divider { margin: 40px 0 36px; gap: 12px; }
    .mx-wb-divider em { padding: 6px 12px; font-size: 11.5px; }
}

/* =========================================================================
   ▓▓▓ NX-HEADER — Modern header redesign ▓▓▓
   Overrides the old .ce-header layout. Fresh nx-* namespace.
   ========================================================================= */

/* Kill old browser autocomplete bubble appearing under search */
.nx-search__input::-webkit-contacts-auto-fill-button,
.nx-search__input::-webkit-credentials-auto-fill-button { visibility: hidden; display: none !important; pointer-events: none; height: 0; width: 0; margin: 0; }
.nx-search__input::-webkit-search-decoration,
.nx-search__input::-webkit-search-cancel-button,
.nx-search__input::-webkit-search-results-button,
.nx-search__input::-webkit-search-results-decoration { -webkit-appearance: none; appearance: none; }

/* Wrapper resets old ce-header rules */
.nx-header {
    background: rgba(255, 255, 255, 0.78) !important;
    border-bottom: 1px solid var(--rule) !important;
    box-shadow: none !important;
    position: sticky !important;
    top: 0;
    z-index: 80;
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
}
.nx-header.is-scrolled {
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 1px 0 var(--rule), 0 8px 24px -16px rgba(15, 23, 42, 0.10) !important;
    border-bottom-color: transparent !important;
}

.nx-header .container { max-width: 1320px !important; }

.nx-header__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 14px 0 !important;
    min-height: 72px;
}

/* Brand */
.nx-header__brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nx-header__brand img {
    max-height: 40px;
    width: auto;
    filter: none !important;
    display: block;
    transition: transform 0.2s var(--ease-q);
}
.nx-header__brand:hover img { transform: scale(1.03); }

/* Nav — Hyperline plain centered text links (no pill container) */
.nx-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0 auto;
}

.nx-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px !important;
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--ink-2) !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: var(--r-md) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: color 0.16s var(--ease-q);
    position: relative;
    line-height: 1;
    text-transform: none !important;
}
.nx-nav__link::after { display: none !important; }
.nx-nav__link:hover { color: var(--ink) !important; background: transparent !important; }
.nx-nav__link.active { color: var(--ink) !important; background: transparent !important; box-shadow: none !important; font-weight: 600; }

.nx-nav__link--dd { font-family: inherit; }
.nx-nav__link--dd svg { transition: transform 0.2s var(--ease-q); opacity: 0.6; }
.nx-nav__dd.is-open .nx-nav__link--dd svg { transform: rotate(180deg); opacity: 1; }
.nx-nav__dd { position: relative; }

/* Mega dropdown */
.nx-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 18px;
    box-shadow:
        0 1px 2px rgba(15,23,42,0.04),
        0 24px 48px -16px rgba(15,23,42,0.18),
        0 12px 24px -12px rgba(79,70,229,0.12);
    padding: 14px;
    width: 360px;
    z-index: 90;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s var(--ease-q), transform 0.22s var(--ease-q), visibility 0s linear 0.22s;
}
.nx-nav__dd.is-open .nx-mega {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
}

.nx-mega__arrow {
    position: absolute;
    top: -7px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: #fff;
    border-left: 1px solid var(--rule);
    border-top: 1px solid var(--rule);
    border-radius: 2px 0 0 0;
}

.nx-mega__head {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
    padding: 6px 12px 10px;
}

.nx-mega__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none !important;
    color: var(--ink) !important;
    transition: background 0.16s;
    margin-bottom: 4px;
}
.nx-mega__item:hover {
    background: var(--paper-2);
}
.nx-mega__item:hover .nx-mega__chev { transform: translateX(2px); color: var(--brand); }

.nx-mega__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.nx-mega__icon--live { background: var(--live-soft); color: var(--live); }
.nx-mega__icon--rec  { background: var(--brand-soft); color: var(--brand); }
.nx-mega__icon-pulse {
    position: absolute;
    top: 6px; right: 6px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    animation: pulse 1.6s ease-out infinite;
}

.nx-mega__body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.nx-mega__body strong {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.nx-mega__body small {
    font-size: 12.5px;
    color: var(--ink-4);
    font-weight: 400;
}

.nx-mega__chev {
    color: var(--ink-5);
    flex-shrink: 0;
    transition: transform 0.2s var(--ease-q), color 0.2s;
}

.nx-mega__foot {
    margin-top: 8px;
    padding: 12px 12px 6px;
    border-top: 1px solid var(--rule-soft);
    display: flex; align-items: center; justify-content: space-between;
    font-size: 12.5px;
}
.nx-mega__foot span { color: var(--ink-4); }
.nx-mega__foot a {
    color: var(--brand) !important;
    font-weight: 600;
    text-decoration: none;
}
.nx-mega__foot a:hover { color: var(--brand-2) !important; }

/* Actions cluster */
.nx-header__actions {
    display: flex; align-items: center; gap: 10px;
    margin-left: auto;
}

/* Search */
.nx-search {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 8px;
    width: 260px;
    height: 40px;
    padding: 0 12px 0 12px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 999px;
    transition: all 0.18s var(--ease-q);
}
.nx-search:hover { border-color: var(--rule-strong); background: #fff; }
.nx-search:focus-within {
    background: #fff;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-soft);
    width: 320px;
}

.nx-search__icon { color: var(--ink-4); flex-shrink: 0; }
.nx-search:focus-within .nx-search__icon { color: var(--brand); }

.nx-search__input {
    flex: 1;
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 14px !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    min-width: 0;
    height: 100%;
}
.nx-search__input::placeholder { color: var(--ink-5); }

.nx-search__kbd {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 22px; height: 22px;
    padding: 0 6px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 6px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-3);
    box-shadow: inset 0 -1px 0 var(--rule);
    line-height: 1;
}
.nx-search:focus-within .nx-search__kbd { opacity: 0; pointer-events: none; }

.nx-search__submit {
    position: absolute; inset: 0;
    background: transparent;
    border: 0;
    cursor: pointer;
    opacity: 0;
}
.nx-search__submit:focus { outline: none; }

/* Icon button (cart) */
.nx-icon-btn {
    position: relative;
    width: 40px; height: 40px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 999px;
    color: var(--ink-2) !important;
    background: transparent;
    text-decoration: none !important;
    border: 1px solid transparent;
    transition: all 0.16s var(--ease-q);
}
.nx-icon-btn:hover {
    background: var(--paper-2);
    color: var(--ink) !important;
    border-color: var(--rule);
}

.nx-icon-btn__badge {
    position: absolute;
    top: 4px; right: 4px;
    min-width: 17px; height: 17px;
    padding: 0 5px;
    background: var(--gradient);
    color: #fff !important;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    display: inline-flex; align-items: center; justify-content: center;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.45);
}

/* Buttons */
.nx-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 0 18px;
    height: 40px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.16s var(--ease-q), box-shadow 0.2s, background 0.18s, color 0.18s;
    white-space: nowrap;
    line-height: 1;
}
/* Plain text "Sign in" link (Hyperline "Log in" style) */
.nx-signin {
    display: inline-flex; align-items: center;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--ink-2) !important;
    text-decoration: none !important;
    padding: 0 6px;
    transition: color 0.16s var(--ease-q);
}
.nx-signin:hover { color: var(--ink) !important; }

/* Mobile toggle */
.nx-toggle {
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--rule);
    border-radius: 12px;
    padding: 0;
    display: inline-flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 4px;
    cursor: pointer;
}
.nx-toggle span {
    width: 16px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}
.nx-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nx-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nx-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Compact widths */
@media (max-width: 1180px) {
    .nx-search { width: 200px; }
    .nx-search:focus-within { width: 260px; }
}
@media (max-width: 1080px) {
    .nx-search__kbd { display: none; }
}
@media (max-width: 992px) {
    .nx-header__inner { gap: 16px; min-height: 64px; }
    .nx-header__brand img { max-height: 36px; }
}


/* =========================================================================
   ▓▓▓ WCV v2 — NO speaker image. Color-band hero + clean body ▓▓▓
   These rules override the earlier wcv image-hero version.
   ========================================================================= */

.wgc-item { padding: 12px !important; }

a.wcv {
    display: flex !important;
    flex-direction: column;
    background: #fff !important;
    border: 1px solid var(--rule) !important;
    border-radius: 22px !important;
    overflow: hidden;
    text-decoration: none !important;
    color: var(--ink) !important;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.32s var(--ease-q), box-shadow 0.32s var(--ease-q), border-color 0.32s;
    height: 100%;
    position: relative;
    isolation: isolate;
}
a.wcv:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px -16px rgba(15, 23, 42, 0.18), 0 16px 32px -16px rgba(79, 70, 229, 0.18);
    border-color: var(--brand) !important;
}

/* Wipe old image-hero rules */
.wcv__hero, .wcv__img, .wcv__img-placeholder,
.wcv__tint, .wcv__shine, .wcv__play,
.wcv__sticker, .wcv__sp { display: none !important; }

/* ===== TOP COLOR BAND ===== */
.wcv__band {
    position: relative;
    padding: 24px 24px 22px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #1e1b4b 0%, #4338ca 45%, #7c3aed 100%);
    color: #fff;
    display: flex; align-items: flex-start; justify-content: space-between;
    gap: 16px;
    min-height: 150px;
}
.wcv--live .wcv__band {
    background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 35%, #ec4899 100%);
}
.wcv--rec .wcv__band {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #4338ca 100%);
}

/* Decorative orbs + grid in band */
.wcv__band-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.wcv__band-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.45;
}
.wcv__band-orb--1 {
    width: 220px; height: 220px;
    background: radial-gradient(circle, #f472b6, transparent 70%);
    top: -80px; right: -60px;
}
.wcv__band-orb--2 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    bottom: -90px; left: -40px;
    opacity: 0.35;
}
.wcv__band-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
}

/* Badge inside band */
.wcv__badge {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--ink);
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.wcv--live .wcv__badge { color: var(--live); }
.wcv--rec  .wcv__badge { color: var(--brand); }
.wcv__badge-pulse {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--live);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    animation: pulse 1.6s ease-out infinite;
}

/* Date stack — large and beautiful */
.wcv__date {
    position: relative; z-index: 1;
    display: flex; flex-direction: column;
    align-items: flex-end;
    text-align: right;
    line-height: 1;
    color: #fff;
}
.wcv__date-month {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}
.wcv__date-day {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.85;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.wcv__date-year {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-top: 4px;
}

/* ===== BODY ===== */
.wcv__body {
    padding: 22px 24px 22px;
    display: flex; flex-direction: column;
    flex: 1;
    background: #fff;
}

.wcv__meta {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-4);
}
.wcv__meta-item {
    display: inline-flex; align-items: center; gap: 5px;
}
.wcv__meta-item svg { opacity: 0.7; }
.wcv__meta-dot { color: var(--ink-5); }
.wcv__meta-chip {
    padding: 3px 10px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-left: 4px;
}
.wcv--live .wcv__meta-chip {
    background: var(--live-soft);
    color: var(--live);
}

.wcv__title {
    font-family: var(--font-display) !important;
    font-size: 19px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.022em !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    margin: 0 0 18px !important;
    text-decoration: none !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}
a.wcv:hover .wcv__title { color: var(--brand) !important; }

/* Speaker text block (no image) */
.wcv__speaker {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 18px;
    padding: 12px 14px;
    background: var(--paper-2);
    border: 1px solid var(--rule-soft);
    border-radius: 12px;
}
.wcv__speaker-mark {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}
.wcv--live .wcv__speaker-mark {
    background: linear-gradient(135deg, #ef4444, #f97316);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
}
.wcv__speaker-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.wcv__speaker-info strong {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.wcv__speaker-info span {
    font-size: 12px;
    color: var(--ink-4);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA row */
.wcv__cta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--rule-soft);
}
.wcv__cta-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.wcv__cta-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.28s var(--ease-q);
    flex-shrink: 0;
}
a.wcv:hover .wcv__cta-arrow {
    background: var(--brand);
    transform: translateX(2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.4);
}

/* Animated gradient top edge */
.wcv--live::before, .wcv--rec::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 3;
    background-size: 200% 100%;
    animation: wcv-bar 4s ease-in-out infinite;
}
.wcv--live::before { background: linear-gradient(90deg, #ef4444, #f97316, #ec4899, #ef4444); }
.wcv--rec::before  { background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899, #4f46e5); }
@keyframes wcv-bar {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@media (max-width: 540px) {
    .wgc-item { padding: 8px !important; }
    .wcv__band { padding: 20px; min-height: 130px; }
    .wcv__date-day { font-size: 46px; }
    .wcv__body { padding: 18px 20px; }
    .wcv__title { font-size: 17px !important; }
}

/* =========================================================================
   ▓▓▓ FOOTER FIX — force dark background regardless of other rules ▓▓▓
   ========================================================================= */
footer.ce-footer {
    background: #0b1220 !important;
    background-color: #0b1220 !important;
    color: #fff !important;
}
footer.ce-footer * { color: inherit; }

footer.ce-footer .ce-footer__newsletter {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 60%, #ec4899 100%) !important;
    padding: 28px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}
footer.ce-footer .ce-footer__newsletter-inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
footer.ce-footer .ce-footer__newsletter-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #fff !important;
    margin-bottom: 2px;
}
footer.ce-footer .ce-footer__newsletter-text span {
    font-size: 14px;
    color: rgba(255,255,255,0.88) !important;
}

footer.ce-footer .ce-footer__newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.14) !important;
    padding: 5px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
}
footer.ce-footer .ce-footer__newsletter-form input {
    background: transparent !important;
    border: 0 !important;
    padding: 10px 16px !important;
    color: #fff !important;
    font-size: 14px !important;
    min-width: 240px;
    outline: none !important;
    box-shadow: none !important;
}
footer.ce-footer .ce-footer__newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7) !important;
}
footer.ce-footer .ce-footer__newsletter-form button {
    background: #fff !important;
    color: #0b1220 !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 10px 22px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
}
footer.ce-footer .ce-footer__newsletter-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.18);
}

footer.ce-footer .ce-footer__top {
    padding: 56px 0 40px !important;
    background: #0b1220 !important;
}

footer.ce-footer .ce-footer__brand img.ce-footer__logo,
footer.ce-footer .ce-footer__logo {
    max-height: 42px !important;
    margin-bottom: 16px;
    filter: brightness(0) invert(1) !important;
}
footer.ce-footer .ce-footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.72) !important;
    max-width: 360px;
    margin: 0 0 20px;
}

footer.ce-footer .ce-footer__social {
    display: flex !important;
    gap: 10px;
    margin-top: 8px;
}
footer.ce-footer .ce-footer__social a {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 50%;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.18s var(--ease-q);
    text-decoration: none !important;
}
footer.ce-footer .ce-footer__social a svg {
    fill: #fff !important;
    color: #fff !important;
}
footer.ce-footer .ce-footer__social a:hover {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    transform: translateY(-2px);
}

footer.ce-footer .ce-footer__heading {
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

footer.ce-footer .ce-footer__links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
footer.ce-footer .ce-footer__links li { margin-bottom: 10px; }
footer.ce-footer .ce-footer__links a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.15s;
}
footer.ce-footer .ce-footer__links a:hover { color: #fff !important; }

footer.ce-footer .ce-footer__contact-row {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.72) !important;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}
footer.ce-footer .ce-footer__contact-row svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #a5b4fc !important;
    stroke: #a5b4fc !important;
}
footer.ce-footer .ce-footer__contact-row span,
footer.ce-footer .ce-footer__contact-row a {
    color: rgba(255,255,255,0.78) !important;
    text-decoration: none !important;
}
footer.ce-footer .ce-footer__contact-row a:hover { color: #fff !important; }

footer.ce-footer .ce-footer__payment {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}
footer.ce-footer .ce-footer__payment-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5) !important;
    margin-bottom: 10px;
    font-weight: 700;
}
footer.ce-footer .ce-footer__payment-icons {
    display: flex !important;
    gap: 8px;
}
footer.ce-footer .ce-footer__payment-icons span {
    width: 40px; height: 28px;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 5px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 17px !important;
    color: #fff !important;
}
footer.ce-footer .ce-footer__payment-icons i { color: #fff !important; }

footer.ce-footer .ce-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding: 20px 0 !important;
    background: rgba(0,0,0,0.25) !important;
}
footer.ce-footer .ce-footer__bottom-inner {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: rgba(255,255,255,0.55) !important;
}
footer.ce-footer .ce-footer__bottom-inner span,
footer.ce-footer .ce-footer__bottom-inner a {
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
}
footer.ce-footer .ce-footer__bottom-inner a:hover { color: #fff !important; }
footer.ce-footer .ce-footer__bottom-links {
    display: flex !important;
    gap: 16px;
}

/* =========================================================================
   ▓▓▓ CF — Conference / event detail page ▓▓▓
   ========================================================================= */

.cf-body { background: #fafafe; }

/* =================== HERO BAND =================== */
.cf-hero {
    position: relative;
    padding: 36px 0 56px;
    background: linear-gradient(180deg, #0b1220 0%, #1e1b4b 50%, #3730a3 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.cf-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.cf-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.cf-hero__orb--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, #7c3aed, transparent 70%);
    top: -200px; right: -100px;
    opacity: 0.45;
}
.cf-hero__orb--2 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #ec4899, transparent 70%);
    bottom: -240px; left: -80px;
    opacity: 0.3;
}
.cf-hero__orb--3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #06b6d4, transparent 70%);
    top: 30%; left: 40%;
    opacity: 0.18;
}
.cf-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.cf-hero .container { position: relative; z-index: 1; max-width: 1280px; }

/* Breadcrumb */
.cf-bread {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.cf-bread a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s; }
.cf-bread a:hover { color: #fff; }
.cf-bread svg { opacity: 0.4; }
.cf-bread span { color: rgba(255,255,255,0.95); font-weight: 500; }

/* Tags row */
.cf-hero__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.cf-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.92);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
}
.cf-tag--live {
    background: rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.35);
}
.cf-tag__pulse {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fca5a5;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    animation: pulse 1.6s ease-out infinite;
}
.cf-tag--rec {
    background: rgba(124, 58, 237, 0.2);
    color: #c4b5fd;
    border-color: rgba(124, 58, 237, 0.35);
}
.cf-tag--cat {}
.cf-tag--ce {
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

/* Title */
.cf-hero__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.4vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 28px;
    max-width: 1000px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* Byline */
.cf-hero__byline {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.cf-hero__byline-mark {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ec4899, #7c3aed);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
    flex-shrink: 0;
}
.cf-hero__byline > div { display: flex; flex-direction: column; }
.cf-hero__byline-kicker {
    font-size: 11.5px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cf-hero__byline-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.015em;
    margin-top: 2px;
}

.cf-hero__countdown {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    margin-left: auto;
}
.cf-hero__countdown-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.5);
    animation: pulse 1.6s ease-out infinite;
}
.cf-hero__countdown--imminent { background: rgba(245, 158, 11, 0.2); border-color: rgba(245, 158, 11, 0.4); color: #fde68a; }
.cf-hero__countdown--imminent .cf-hero__countdown-dot { background: #fde68a; }
.cf-hero__countdown--live { background: rgba(239, 68, 68, 0.2); border-color: rgba(239, 68, 68, 0.4); color: #fca5a5; }
.cf-hero__countdown--live .cf-hero__countdown-dot { background: #fca5a5; }

/* Fact tiles */
.cf-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
@media (max-width: 880px) { .cf-facts { grid-template-columns: repeat(2, 1fr); } }

.cf-fact {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    backdrop-filter: blur(12px);
    transition: all 0.2s;
}
.cf-fact:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}
.cf-fact__icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: #c7d2fe;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cf-fact > div { display: flex; flex-direction: column; min-width: 0; }
.cf-fact__label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.cf-fact__value {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
    line-height: 1.3;
}

/* =================== MAIN LAYOUT =================== */
.cf-main {
    padding: 56px 0 80px;
    background: #fafafe;
    position: relative;
}
@media (max-width: 768px) { .cf-main { padding: 36px 0 100px; } }

.cf-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
    align-items: start;
}
@media (max-width: 1024px) {
    .cf-grid { grid-template-columns: 1fr; }
}

/* Tabs (sticky) */
.cf-tabs {
    display: flex; gap: 4px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
    position: sticky;
    top: 80px;
    z-index: 10;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.cf-tabs::-webkit-scrollbar { display: none; }
.cf-tab {
    padding: 9px 18px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-3);
    cursor: pointer;
    letter-spacing: -0.005em;
    white-space: nowrap;
    transition: all 0.18s;
}
.cf-tab:hover { color: var(--ink); }
.cf-tab.is-active {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 4px 10px -2px rgba(15,23,42,0.2);
}

/* Content blocks */
.cf-block {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-xs);
}
@media (max-width: 600px) { .cf-block { padding: 24px 20px; } }

.cf-block__head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule-soft);
}
.cf-block__num {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.cf-block__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.2;
    letter-spacing: -0.025em;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}
.cf-block__body {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--ink-2);
}
.cf-block__body p { margin: 0 0 14px; }
.cf-block__body p:last-child { margin-bottom: 0; }
.cf-block__body strong { color: var(--ink); font-weight: 600; }
.cf-block__body ul, .cf-block__body ol { padding-left: 22px; margin: 0 0 16px; }
.cf-block__body li { margin: 6px 0; }
.cf-block__body a { color: var(--brand); }
.cf-block__body h3, .ed-subhead {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 20px 0 10px;
}

/* Speaker block */
.cf-speaker {
    display: flex; gap: 24px;
    align-items: flex-start;
}
@media (max-width: 600px) { .cf-speaker { flex-direction: column; gap: 16px; } }

.cf-speaker__avatar {
    width: 120px; height: 120px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    box-shadow: 0 12px 32px -8px rgba(79, 70, 229, 0.4);
    position: relative;
}
.cf-speaker__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-speaker__avatar span {
    width: 100%; height: 100%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
}
.cf-speaker__body { flex: 1; min-width: 0; }
.cf-speaker__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 4px;
}
.cf-speaker__role {
    display: block;
    font-size: 13px;
    color: var(--ink-4);
    margin-bottom: 14px;
}
.cf-speaker__bio {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0 0 14px;
}
.cf-speaker__link {
    display: inline-flex; align-items: center; gap: 4px;
    background: none;
    border: 0;
    padding: 0;
    color: var(--brand);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.cf-speaker__link:hover { color: var(--brand-2); }

/* Details grid */
.cf-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--rule-soft);
    border-radius: 14px;
    overflow: hidden;
}
@media (max-width: 600px) { .cf-detail-grid { grid-template-columns: 1fr; } }

.cf-detail {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rule-soft);
    border-right: 1px solid var(--rule-soft);
    background: var(--paper-2);
}
.cf-detail:nth-child(2n) { border-right: 0; }
.cf-detail:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 600px) {
    .cf-detail { border-right: 0; }
    .cf-detail:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule-soft); }
    .cf-detail:last-child { border-bottom: 0; }
}
.cf-detail__label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 4px;
}
.cf-detail__value {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

/* Trust row */
.cf-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}
@media (max-width: 760px) { .cf-trust { grid-template-columns: 1fr; } }
.cf-trust__item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
}
.cf-trust__item svg {
    width: 22px; height: 22px;
    color: var(--brand);
    flex-shrink: 0;
    background: var(--brand-soft);
    border-radius: 8px;
    padding: 4px;
    box-sizing: content-box;
}
.cf-trust__item > div { display: flex; flex-direction: column; gap: 2px; }
.cf-trust__item strong {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
}
.cf-trust__item span {
    font-size: 12.5px;
    color: var(--ink-4);
    line-height: 1.4;
}

/* =================== BUY RAIL =================== */
.cf-rail { position: sticky; top: 80px; align-self: start; }
@media (max-width: 1024px) { .cf-rail { position: static; } }

.cf-buy {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 16px 40px -16px rgba(15,23,42,0.12);
}

.cf-buy__head {
    padding: 20px 24px 16px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fce7f3 100%);
    border-bottom: 1px solid var(--rule);
    text-align: left;
}
.cf-buy__from {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 4px;
}
.cf-buy__price {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cf-buy__title {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
}

.cf-buy__form {}
.cf-buy__body { padding: 18px 20px 4px; max-height: 360px; overflow-y: auto; }
.cf-buy__body::-webkit-scrollbar { width: 4px; }
.cf-buy__body::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 2px; }

.cf-buy__group { margin-bottom: 16px; }
.cf-buy__group:last-child { margin-bottom: 4px; }
.cf-buy__group-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 8px;
}

.cf-opt {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 14px;
    background: var(--paper-2);
    border: 1.5px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 6px;
    transition: all 0.16s var(--ease-q);
    position: relative;
}
.cf-opt:hover { background: var(--paper-3); }
.cf-opt input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.cf-opt__check {
    width: 20px; height: 20px;
    border: 1.5px solid var(--rule-strong);
    border-radius: 6px;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.16s;
    flex-shrink: 0;
}
.cf-opt input:checked + .cf-opt__check {
    background: var(--brand);
    border-color: var(--brand);
}
.cf-opt input:checked + .cf-opt__check::after {
    content: '';
    width: 6px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.cf-opt:has(input:checked) {
    background: var(--brand-soft);
    border-color: var(--brand);
}

.cf-opt__name {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: -0.005em;
}
.cf-opt:has(input:checked) .cf-opt__name { color: var(--ink); font-weight: 600; }
.cf-opt__price {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
}

/* Coupon */
.cf-coupon {
    display: flex; align-items: center; gap: 12px;
    margin: 8px 20px;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
    border: 1px dashed #fbbf24;
    border-radius: 12px;
    cursor: pointer;
    width: calc(100% - 40px);
    text-align: left;
    transition: all 0.16s;
}
.cf-coupon:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(251, 191, 36, 0.5); }
.cf-coupon[data-copied="true"] {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
}
.cf-coupon__icon {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.6);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #b45309;
    flex-shrink: 0;
}
.cf-coupon__body { flex: 1; display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cf-coupon__row { display: flex; align-items: center; gap: 8px; }
.cf-coupon__row strong {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #92400e;
}
.cf-coupon__pct {
    font-size: 11px;
    padding: 2px 8px;
    background: #fff;
    border-radius: 999px;
    font-weight: 700;
    color: #b45309;
    letter-spacing: 0.04em;
}
.cf-coupon__status {
    font-size: 11px;
    color: #b45309;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Total */
.cf-buy__total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 18px 24px 16px;
    margin-top: 4px;
    border-top: 2px solid var(--ink);
}
.cf-buy__total span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
}
.cf-buy__total strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
}

/* CTA */
.cf-buy__cta {
    width: calc(100% - 40px);
    margin: 0 20px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 20px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: all 0.18s var(--ease-q);
    box-shadow: 0 8px 20px -6px rgba(15,23,42,0.3);
}
.cf-buy__cta:hover {
    background: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -6px rgba(79, 70, 229, 0.5);
    color: #fff;
}

/* Alt links */
.cf-buy__alts {
    list-style: none;
    padding: 16px 24px 4px;
    margin: 0;
    display: flex; flex-direction: column;
    gap: 8px;
}
.cf-buy__alts a {
    font-size: 13px;
    color: var(--ink-3);
    text-decoration: none;
    transition: color 0.15s;
}
.cf-buy__alts a:hover { color: var(--brand); }

/* Share row */
.cf-buy__share {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px;
    padding: 16px 24px;
    margin-top: 8px;
    border-top: 1px solid var(--rule-soft);
}
.cf-buy__share > span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-4);
}
.cf-share-row { display: flex; gap: 6px; }
.cf-share-row a, .cf-share-row button {
    width: 32px; height: 32px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-3);
    cursor: pointer;
    transition: all 0.16s;
    font-size: 13px;
}
.cf-share-row a:hover, .cf-share-row button:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-1px);
}
.cf-share-status {
    padding: 0 24px 14px;
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    letter-spacing: 0.04em;
    min-height: 14px;
}

/* =================== RELATED =================== */
.cf-related {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--rule);
}
.cf-related__head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.cf-related__kicker {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    padding: 5px 12px;
    background: var(--brand-soft);
    border-radius: 999px;
    margin-bottom: 14px;
}
.cf-related__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}
.cf-related__link {
    color: var(--brand);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 9px 16px;
    background: var(--brand-soft);
    border-radius: 999px;
    transition: all 0.18s;
}
.cf-related__link:hover { background: var(--brand); color: #fff; }

.cf-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 980px) { .cf-related__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cf-related__grid { grid-template-columns: 1fr; } }

.cf-rel-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.25s var(--ease-q);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 180px;
    box-shadow: var(--shadow-xs);
}
.cf-rel-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--violet), #ec4899);
    opacity: 0;
    transition: opacity 0.25s;
}
.cf-rel-card--live::before { background: linear-gradient(90deg, #ef4444, #f97316); }
.cf-rel-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 16px 32px -8px rgba(15,23,42,0.12);
    color: var(--ink);
}
.cf-rel-card:hover::before { opacity: 1; }

.cf-rel-card__top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px;
    gap: 8px;
}
.cf-rel-card__tag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 4px 9px;
    border-radius: 999px;
}
.cf-rel-card--live .cf-rel-card__tag { background: var(--live-soft); color: var(--live); }
.cf-rel-card--rec .cf-rel-card__tag { background: var(--brand-soft); color: var(--brand); }
.cf-rel-card__pulse {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--live);
    animation: pulse 1.6s ease-out infinite;
}
.cf-rel-card__date {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-4);
}

.cf-rel-card__title {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cf-rel-card__foot {
    margin-top: auto;
    display: flex; align-items: center; gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--rule-soft);
}
.cf-rel-card__mark {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.cf-rel-card--live .cf-rel-card__mark { background: linear-gradient(135deg, #ef4444, #f97316); }
.cf-rel-card__sp {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cf-rel-card__arrow {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--paper-3);
    color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s var(--ease-q);
}
.cf-rel-card:hover .cf-rel-card__arrow {
    background: var(--ink);
    color: #fff;
    transform: translateX(2px);
}

/* =================== STICKY BAR =================== */
.cf-stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid var(--rule);
    z-index: 70;
    transform: translateY(110%);
    transition: transform 0.32s var(--ease-q);
    box-shadow: 0 -8px 24px -8px rgba(15,23,42,0.12);
}
.cf-stickybar.is-visible { transform: translateY(0); }

.cf-stickybar__inner {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 0;
}
.cf-stickybar__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cf-stickybar__name {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cf-stickybar__meta {
    font-size: 12px;
    color: var(--ink-4);
    display: flex; align-items: center; gap: 6px;
    margin-top: 2px;
}
.cf-stickybar__meta strong {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.015em;
    margin-left: 4px;
}
.cf-stickybar__form { flex-shrink: 0; }
.cf-stickybar__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 22px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.cf-stickybar__btn:hover {
    background: var(--brand);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.45);
}

@media (max-width: 600px) {
    .cf-stickybar__name { font-size: 13px; max-width: 180px; }
    .cf-stickybar__meta { font-size: 11px; }
    .cf-stickybar__btn { padding: 10px 16px; font-size: 12.5px; }
}

/* =========================================================================
   ▓▓▓ CK — Cart / checkout redesign ▓▓▓
   ========================================================================= */

.ck-body { background: #fafafe !important; }

/* ============== EMPTY ============== */
.ck-empty {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
    display: flex; align-items: center;
}
.ck-empty__inner {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}
.ck-empty__icon {
    width: 84px; height: 84px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--brand-soft), #fce7f3);
    border-radius: 24px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--brand);
    box-shadow: 0 12px 32px -8px rgba(79, 70, 229, 0.25);
}
.ck-empty__kicker {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand);
    padding: 5px 12px;
    background: var(--brand-soft);
    border-radius: 999px;
    margin-bottom: 20px;
}
.ck-empty__title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5.4vw, 64px);
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 18px;
}
.ck-empty__title span {
    background: linear-gradient(135deg, var(--brand), var(--violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
}
.ck-empty__lede {
    font-size: 16px;
    color: var(--ink-3);
    line-height: 1.6;
    margin: 0 0 32px;
}
.ck-empty__cta {
    display: flex; gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.ck-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none !important;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s var(--ease-q);
    line-height: 1;
}
.ck-btn--primary {
    background: var(--ink);
    color: #fff !important;
    box-shadow: var(--shadow-md);
}
.ck-btn--primary:hover {
    background: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}
.ck-btn--ghost {
    background: #fff;
    color: var(--ink) !important;
    border-color: var(--rule-strong);
}
.ck-btn--ghost:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

/* ============== HERO STRIP ============== */
.ck-hero {
    position: relative;
    padding: 28px 0 56px;
    background: linear-gradient(180deg, #0b1220 0%, #1e1b4b 70%, #3730a3 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.ck-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.ck-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}
.ck-hero__orb--1 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, #7c3aed, transparent 70%);
    top: -180px; right: -120px;
    opacity: 0.5;
}
.ck-hero__orb--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, #ec4899, transparent 70%);
    bottom: -200px; left: -80px;
    opacity: 0.3;
}
.ck-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}
.ck-hero .container { position: relative; z-index: 1; max-width: 1280px; }

.ck-bread {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.ck-bread a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s; }
.ck-bread a:hover { color: #fff; }
.ck-bread svg { opacity: 0.4; }
.ck-bread span { color: #fff; font-weight: 500; }

.ck-hero__row {
    display: flex; justify-content: space-between; align-items: end;
    gap: 32px;
    flex-wrap: wrap;
}
.ck-hero__kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.18);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 999px;
    margin-bottom: 14px;
}
.ck-hero__kicker::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #6ee7b7;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.ck-hero__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.4vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* Stepper */
.ck-stepper {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 6px 12px;
    backdrop-filter: blur(12px);
    margin: 0;
    list-style: none;
}
.ck-stepper__item {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: all 0.2s;
}
.ck-stepper__num {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    transition: all 0.2s;
}
.ck-stepper__item.is-current {
    background: #fff;
    color: var(--ink);
}
.ck-stepper__item.is-current .ck-stepper__num {
    background: var(--brand);
    color: #fff;
}
.ck-stepper__item.is-done .ck-stepper__num {
    background: var(--success);
    color: #fff;
}
.ck-stepper__item.is-done { color: rgba(255,255,255,0.85); }
.ck-stepper__connector {
    width: 18px; height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
}
@media (max-width: 600px) {
    .ck-stepper__label { display: none; }
    .ck-stepper { padding: 5px 8px; }
}

/* ============== BODY ============== */
.ck-body-sec { padding: 56px 0 80px; background: #fafafe; }
@media (max-width: 768px) { .ck-body-sec { padding: 32px 0 100px; } }

.ck-step { display: none; }
.ck-step.is-active { display: block; }

.ck-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 32px;
    align-items: start;
}
@media (max-width: 1024px) {
    .ck-layout { grid-template-columns: 1fr; }
}

.ck-col-main { min-width: 0; }
.ck-col-rail { min-width: 0; }
@media (min-width: 1025px) {
    .ck-col-rail { position: sticky; top: 90px; }
}

/* ============== CARD ============== */
.ck-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
@media (max-width: 600px) { .ck-card { padding: 22px 18px; } }

.ck-card__head {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule-soft);
}
.ck-card__head > div { flex: 1; min-width: 0; }
.ck-card__num {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 12.5px;
    font-weight: 800;
    flex-shrink: 0;
    letter-spacing: -0.02em;
}
.ck-card__title {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 700;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 0 0 4px;
}
.ck-card__sub {
    display: block;
    font-size: 13px;
    color: var(--ink-4);
    line-height: 1.4;
}
.ck-pill {
    margin-left: auto;
    flex-shrink: 0;
    padding: 5px 12px;
    background: var(--brand-soft);
    color: var(--brand);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ============== ITEMS ============== */
.ck-items { display: flex; flex-direction: column; gap: 12px; }

.ck-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px;
    background: var(--paper-2);
    border: 1px solid var(--rule-soft);
    border-radius: 16px;
    transition: all 0.2s;
}
.ck-item:hover {
    border-color: var(--rule-strong);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.ck-item__mark {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(79, 70, 229, 0.35);
}

.ck-item__body { flex: 1; min-width: 0; }
.ck-item__title-link { text-decoration: none; color: inherit; }
.ck-item__title-link:hover .ck-item__title { color: var(--brand); }
.ck-item__title {
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 10px;
    transition: color 0.18s;
}

.ck-item__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.ck-chip {
    display: inline-flex; align-items: center;
    padding: 3px 9px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-3);
    letter-spacing: 0.01em;
}

.ck-item__controls {
    display: flex; align-items: center; gap: 14px;
    flex-wrap: wrap;
}

.ck-qty {
    display: inline-flex; align-items: center;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 999px;
    padding: 3px;
    height: 36px;
}
.ck-qty__btn {
    width: 28px; height: 28px;
    border: 0; background: transparent;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink-2);
    cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.15s;
    line-height: 1;
}
.ck-qty__btn:hover {
    background: var(--ink);
    color: #fff;
}
.ck-qty__input {
    width: 36px; height: 28px;
    border: 0 !important;
    background: transparent !important;
    text-align: center;
    font-family: var(--font-display) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    outline: none !important;
    -moz-appearance: textfield;
    padding: 0 !important;
    box-shadow: none !important;
}
.ck-qty__input::-webkit-inner-spin-button,
.ck-qty__input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.ck-item__unit {
    font-size: 12.5px;
    color: var(--ink-3);
    font-weight: 600;
}
.ck-item__unit span { font-weight: 400; color: var(--ink-4); }

.ck-item__end {
    display: flex; flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}
.ck-item__price {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    color: var(--ink) !important;
    background: none !important;
    padding: 0 !important;
}
.ck-item__remove {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: transparent !important;
    border: 1px solid var(--rule) !important;
    color: var(--ink-4) !important;
    display: inline-flex; align-items: center; justify-content: center;
    text-decoration: none !important;
    transition: all 0.18s;
    padding: 0 !important;
}
.ck-item__remove:hover {
    background: var(--live-soft) !important;
    border-color: var(--live) !important;
    color: var(--live) !important;
}

@media (max-width: 600px) {
    .ck-item { flex-wrap: wrap; padding: 16px; }
    .ck-item__end { width: 100%; flex-direction: row; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--rule-soft); }
}

.ck-continue {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px;
    padding: 10px 16px;
    background: transparent;
    color: var(--brand);
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.18s;
}
.ck-continue:hover { background: var(--brand-soft); color: var(--brand-2); }

/* ============== TRUST STRIP ============== */
.ck-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 8px;
}
@media (max-width: 720px) { .ck-trust { grid-template-columns: 1fr; } }
.ck-trust--mini { grid-template-columns: 1fr; margin-top: 16px; }

.ck-trust__item {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 12px;
    font-size: 13px;
    color: var(--ink-3);
}
.ck-trust__item svg { color: var(--success); flex-shrink: 0; }
.ck-trust__item strong { color: var(--ink); font-weight: 700; }

/* ============== BACK LINK ============== */
.ck-back {
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 16px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid var(--rule);
    color: var(--ink-2) !important;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.18s;
}
.ck-back:hover {
    border-color: var(--ink);
    color: var(--ink) !important;
    background: var(--paper-2);
}

/* ============== FORM ============== */
.ck-form { display: flex; flex-direction: column; gap: 16px; }
.ck-form__row { display: flex; flex-direction: column; gap: 16px; }
.ck-form__row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .ck-form__row--2 { grid-template-columns: 1fr; } }

.ck-form__group label, .ck-form__group > label {
    display: block !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: var(--ink-2) !important;
    margin-bottom: 7px !important;
    letter-spacing: -0.005em !important;
    text-transform: none !important;
}
.ck-form__opt {
    font-weight: 500;
    color: var(--ink-4);
    margin-left: 4px;
}

.ck-input {
    width: 100% !important;
    background: var(--paper-2) !important;
    border: 1.5px solid transparent !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 14.5px !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    transition: all 0.18s !important;
    outline: none !important;
    box-shadow: none !important;
    line-height: 1.5 !important;
}
.ck-input::placeholder { color: var(--ink-5); }
.ck-input:hover { background: var(--paper-3) !important; }
.ck-input:focus {
    background: #fff !important;
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 4px var(--brand-soft) !important;
}

/* Select arrow */
select.ck-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px 12px;
    padding-right: 40px !important;
}

/* ============== SUMMARY RAIL ============== */
.ck-summary {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 16px 40px -16px rgba(15,23,42,0.12);
}

.ck-summary__head {
    padding: 20px 24px 16px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fce7f3 100%);
    border-bottom: 1px solid var(--rule);
}
.ck-summary__kicker {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 4px;
}
.ck-summary__heading {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 0;
}

/* Mini items list */
.ck-summary__items {
    list-style: none;
    padding: 16px 20px 8px;
    margin: 0;
    border-bottom: 1px solid var(--rule-soft);
    max-height: 280px;
    overflow-y: auto;
}
.ck-summary__items li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
}
.ck-summary__item-mark {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}
.ck-summary__item-title {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.ck-summary__item-meta {
    font-size: 12px;
    color: var(--ink-4);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Lines */
.ck-summary__body { padding: 16px 24px 8px; }
.ck-summary__line {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 0;
    font-size: 14px;
    color: var(--ink-3);
}
.ck-summary__line strong { font-weight: 700; color: var(--ink); }
.ck-summary__line--muted strong {
    color: var(--ink-4) !important;
    font-weight: 500;
    font-size: 12.5px;
}
.ck-summary__line--discount {
    color: var(--success) !important;
    background: var(--success-soft);
    padding: 8px 12px !important;
    border-radius: 8px;
    margin: 6px 0;
}
.ck-summary__line--discount span {
    display: inline-flex; align-items: center; gap: 6px;
    font-weight: 600;
}
.ck-summary__line--discount strong { color: var(--success) !important; }

/* Coupon form */
.ck-coupon-form {
    display: flex; align-items: center;
    background: var(--paper-2);
    border: 1.5px dashed var(--rule-strong);
    border-radius: 12px;
    padding: 2px 2px 2px 14px;
    margin-top: 16px;
    transition: all 0.2s;
}
.ck-coupon-form:focus-within {
    border-color: var(--brand);
    background: #fff;
    box-shadow: 0 0 0 4px var(--brand-soft);
}
.ck-coupon-form > svg { color: var(--ink-4); flex-shrink: 0; }
.ck-coupon-form input {
    flex: 1;
    background: transparent !important;
    border: 0 !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    color: var(--ink) !important;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    outline: none !important;
    box-shadow: none !important;
    font-family: var(--font-mono) !important;
    min-width: 0;
}
.ck-coupon-form input::placeholder {
    color: var(--ink-5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11.5px;
}
.ck-coupon-form button {
    background: var(--ink) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 9px 16px !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all 0.18s;
}
.ck-coupon-form button:hover {
    background: var(--brand) !important;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

/* Total */
.ck-summary__total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 18px 24px;
    margin-top: 8px;
    border-top: 2px solid var(--ink);
}
.ck-summary__total .ed-cart-summary__total-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ink-3) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}
.ck-summary__amount {
    font-family: var(--font-display) !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    letter-spacing: -0.035em !important;
    background: linear-gradient(135deg, var(--brand), var(--violet)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
}

/* CTA */
.ck-cta {
    display: flex !important;
    width: calc(100% - 40px) !important;
    margin: 8px 20px 16px !important;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 15px 22px !important;
    background: var(--ink) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.18s var(--ease-q) !important;
    box-shadow: 0 8px 20px -6px rgba(15,23,42,0.3) !important;
    letter-spacing: -0.01em;
    text-decoration: none !important;
}
.ck-cta:hover {
    background: var(--brand) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(79, 70, 229, 0.5) !important;
    color: #fff !important;
}

.ck-keep {
    display: block;
    text-align: center;
    padding: 0 20px 16px;
    color: var(--ink-3) !important;
    font-size: 13px;
    text-decoration: none !important;
    transition: color 0.15s;
}
.ck-keep:hover { color: var(--brand) !important; }

.ck-payments {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px 20px;
    border-top: 1px solid var(--rule-soft);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-4);
}
.ck-payments > div { display: flex; gap: 6px; align-items: center; }
.ck-payments i {
    font-size: 22px !important;
    color: var(--ink-3);
}

.ck-summary__fineprint {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 11.5px;
    color: var(--ink-4);
    line-height: 1.5;
    text-align: center;
}
.ck-summary__fineprint a { color: var(--brand); font-weight: 600; }


/* =========================================================================
   ▓▓▓ XC — Conference page v2 (Stage + Ticket layout) ▓▓▓
   Unique theatre/ticket aesthetic. Standalone xc-* namespace.
   ========================================================================= */

.xc-body { background: #f7f6f1 !important; color: var(--ink); }

/* ============== MARQUEE STRIP ============== */
.xc-strip {
    background: #0b1220;
    color: #fff;
    overflow: hidden;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 4;
}
.xc-strip__track {
    display: flex; align-items: center; gap: 22px;
    width: max-content;
    animation: xc-scroll 60s linear infinite;
    white-space: nowrap;
}
@keyframes xc-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.xc-strip__item {
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.85);
    flex-shrink: 0;
}
.xc-strip__dot {
    color: #ec4899;
    font-size: 8px;
    flex-shrink: 0;
}

/* ============== STAGE HERO ============== */
.xc-stage {
    position: relative;
    background: radial-gradient(ellipse at 50% 0%, #1e1b4b 0%, #0b1220 70%);
    color: #fff;
    padding: 72px 0 160px;
    overflow: hidden;
    isolation: isolate;
}
@media (max-width: 768px) { .xc-stage { padding: 56px 0 140px; } }

.xc-stage__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.xc-stage__beam {
    position: absolute;
    top: -10%; left: 30%;
    width: 1px;
    height: 140%;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.7), transparent);
    transform: rotate(15deg);
    filter: blur(2px);
}
.xc-stage__beam::after {
    content: '';
    position: absolute;
    inset: -100px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.18), transparent 70%);
}
.xc-stage__beam--2 {
    left: auto; right: 25%;
    transform: rotate(-12deg);
    background: linear-gradient(180deg, transparent, rgba(236, 72, 153, 0.6), transparent);
}
.xc-stage__beam--2::after {
    background: radial-gradient(ellipse, rgba(236, 72, 153, 0.15), transparent 70%);
}
.xc-stage__noise {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 80%);
}

.xc-stage .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    text-align: center;
}

/* Breadcrumb */
.xc-bread {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.xc-bread a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.15s; }
.xc-bread a:hover { color: #fff; }
.xc-bread span { color: rgba(255,255,255,0.3); }
.xc-bread__current { color: #fff !important; font-weight: 600; }

/* Tags */
.xc-stage__tags {
    display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
    margin-bottom: 28px;
}
.xc-tag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
}
.xc-tag--live { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.4); color: #fca5a5; }
.xc-tag--rec  { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); color: #c4b5fd; }
.xc-tag--ce   { background: rgba(16,185,129,0.18); border-color: rgba(16,185,129,0.35); color: #6ee7b7; }
.xc-tag__pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: #fca5a5;
    box-shadow: 0 0 0 0 rgba(239,68,68,0.6);
    animation: pulse 1.6s ease-out infinite;
}

/* Title */
.xc-stage__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 36px;
    max-width: 920px;
    text-shadow: 0 2px 40px rgba(0,0,0,0.5);
    background: linear-gradient(180deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Byline */
.xc-stage__byline {
    display: inline-flex; align-items: center; gap: 14px;
    padding: 8px 18px 8px 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.xc-stage__mark {
    width: 38px; height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ec4899, #7c3aed);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.4);
}
.xc-stage__meta { display: flex; flex-direction: column; text-align: left; }
.xc-stage__meta span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.xc-stage__meta strong {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #fff;
    line-height: 1.2;
    margin-top: 1px;
}

.xc-stage__count {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 12px;
    background: rgba(251,191,36,0.16);
    border: 1px solid rgba(251,191,36,0.35);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    color: #fde68a;
    letter-spacing: 0.04em;
    margin-left: 6px;
}
.xc-stage__count-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    animation: pulse 1.6s ease-out infinite;
}
.xc-stage__count--live { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.4); color: #fca5a5; }
.xc-stage__count--live .xc-stage__count-dot { background: #fca5a5; }
.xc-stage__count--imminent { background: rgba(245,158,11,0.2); border-color: rgba(245,158,11,0.4); color: #fcd34d; }

/* Quickbar (date/time/length/format) */
.xc-quickbar {
    display: inline-flex;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.xc-quickbar__cell {
    padding: 14px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex; flex-direction: column;
    text-align: center;
    min-width: 110px;
}
.xc-quickbar__cell:last-child { border-right: 0; }
.xc-quickbar__label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 4px;
}
.xc-quickbar__value {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #fff;
}
@media (max-width: 700px) {
    .xc-quickbar { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .xc-quickbar__cell:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    .xc-quickbar__cell:nth-child(even) { border-right: 0; }
    .xc-quickbar__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ============== TICKET ============== */
.xc-ticket-wrap {
    position: relative;
    margin-top: -110px;
    margin-bottom: 56px;
    z-index: 3;
}
@media (max-width: 768px) {
    .xc-ticket-wrap { margin-top: -90px; }
}

.xc-ticket {
    background: #fff;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 280px 1px 1fr;
    box-shadow:
        0 1px 2px rgba(15,23,42,0.05),
        0 32px 64px -16px rgba(15,23,42,0.25),
        0 16px 32px -16px rgba(79,70,229,0.15);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .xc-ticket {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1px 1fr;
    }
}

/* Ticket notches (cut-outs at perforation top + bottom) */
.xc-ticket__notch {
    position: absolute;
    width: 28px; height: 28px;
    background: #f7f6f1;
    border-radius: 50%;
    z-index: 2;
}
.xc-ticket__notch--l { left: calc(280px - 14px); top: -14px; }
.xc-ticket__notch--r { left: calc(280px - 14px); bottom: -14px; }
@media (max-width: 900px) {
    .xc-ticket__notch--l { left: -14px; top: 50%; transform: translateY(-50%); }
    .xc-ticket__notch--r { left: auto; right: -14px; top: 50%; bottom: auto; transform: translateY(-50%); }
}

/* Stub (left side of ticket) */
.xc-ticket__stub {
    background: linear-gradient(160deg, #0b1220 0%, #1e1b4b 60%, #4338ca 100%);
    color: #fff;
    padding: 28px 24px;
    display: flex; flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.xc-ticket__stub::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 10%, rgba(236,72,153,0.3), transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(124,58,237,0.25), transparent 55%);
    pointer-events: none;
}
.xc-ticket__stub > * { position: relative; }

.xc-ticket__stub-row {
    display: flex; justify-content: space-between; align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.xc-ticket__stub-row strong {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.xc-ticket__date {
    display: flex; flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px dashed rgba(255,255,255,0.18);
    border-radius: 14px;
    margin: 4px 0;
}
.xc-ticket__date-month {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.55);
}
.xc-ticket__date-day {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.95;
    background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 2px 0;
}
.xc-ticket__date-year {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
}

.xc-ticket__stub-cta { margin-top: auto; }

.xc-coupon {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    align-items: center;
    width: 100%;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fde047, #f59e0b);
    border: 0;
    border-radius: 12px;
    color: #422006;
    cursor: pointer;
    text-align: left;
    transition: transform 0.18s var(--ease-q);
    box-shadow: 0 8px 20px -6px rgba(251, 191, 36, 0.5);
}
.xc-coupon:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -6px rgba(251, 191, 36, 0.6); }
.xc-coupon[data-copied="true"] { background: linear-gradient(135deg, #6ee7b7, #10b981); color: #064e3b; }
.xc-coupon__pct {
    grid-row: 1; grid-column: 1;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.xc-coupon__code {
    grid-row: 1; grid-column: 2;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.xc-coupon__status {
    grid-row: 2; grid-column: 1 / -1;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.75;
    margin-top: 4px;
}

/* Perforation */
.xc-ticket__perforation {
    background:
        repeating-linear-gradient(180deg,
            var(--rule-strong) 0,
            var(--rule-strong) 4px,
            transparent 4px,
            transparent 10px);
    width: 1px;
}
@media (max-width: 900px) {
    .xc-ticket__perforation {
        width: 100%;
        height: 1px;
        background:
            repeating-linear-gradient(90deg,
                var(--rule-strong) 0,
                var(--rule-strong) 4px,
                transparent 4px,
                transparent 10px);
    }
}

/* Ticket main (right side) */
.xc-ticket__main {
    padding: 28px 32px;
    display: flex; flex-direction: column;
    gap: 18px;
}
@media (max-width: 600px) { .xc-ticket__main { padding: 24px 20px; } }

.xc-ticket__head {
    display: flex; flex-direction: column; gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule-soft);
}
.xc-ticket__head-kicker {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
}
.xc-ticket__head-price {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand), var(--violet) 60%, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.xc-ticket__head-sub { font-size: 13px; color: var(--ink-3); }

/* Options */
.xc-ticket__options { display: flex; flex-direction: column; gap: 14px; }
.xc-optgroup { display: flex; flex-direction: column; gap: 6px; }
.xc-optgroup__title {
    font-family: var(--font-mono);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 2px;
}

.xc-opt {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    background: var(--paper-2);
    border: 1.5px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.16s var(--ease-q);
    position: relative;
}
.xc-opt:hover { background: var(--paper-3); }
.xc-opt input { position: absolute; opacity: 0; pointer-events: none; }
.xc-opt__check {
    width: 20px; height: 20px;
    border: 1.5px solid var(--rule-strong);
    border-radius: 6px;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.16s;
}
.xc-opt input:checked + .xc-opt__check { background: var(--brand); border-color: var(--brand); }
.xc-opt input:checked + .xc-opt__check::after {
    content: '';
    width: 6px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.xc-opt:has(input:checked) {
    background: var(--brand-soft);
    border-color: var(--brand);
}
.xc-opt__name {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
    letter-spacing: -0.005em;
}
.xc-opt:has(input:checked) .xc-opt__name { color: var(--ink); font-weight: 600; }
.xc-opt__price {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
}

/* Total */
.xc-ticket__total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding-top: 14px;
    border-top: 2px solid var(--ink);
}
.xc-ticket__total span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
}
.xc-ticket__total strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
}

/* CTA */
.xc-ticket__cta {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 15px 24px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s var(--ease-q);
    box-shadow: 0 8px 24px -8px rgba(15,23,42,0.35);
    letter-spacing: -0.005em;
}
.xc-ticket__cta:hover {
    background: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -8px rgba(79,70,229,0.55);
}

/* Reassure */
.xc-ticket__reassure {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.xc-ticket__reassure li {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px;
    color: var(--ink-3);
}
.xc-ticket__reassure svg { color: var(--success); flex-shrink: 0; }

/* Alts */
.xc-ticket__alts {
    display: flex; align-items: center; gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--rule-soft);
    flex-wrap: wrap;
}
.xc-ticket__alts > span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
}
.xc-ticket__alts a {
    font-size: 12.5px;
    color: var(--ink-2);
    text-decoration: none;
    padding: 4px 10px;
    background: var(--paper-2);
    border-radius: 999px;
    transition: all 0.15s;
}
.xc-ticket__alts a:hover { background: var(--ink); color: #fff; }

/* Share */
.xc-ticket__share {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
}
.xc-ticket__share > span {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
}
.xc-ticket__share > div { display: flex; gap: 6px; }
.xc-ticket__share a, .xc-ticket__share button {
    width: 32px; height: 32px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-3);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 13px;
    text-decoration: none;
}
.xc-ticket__share a:hover, .xc-ticket__share button:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: translateY(-1px);
}
.xc-ticket__share-status {
    min-height: 14px;
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-align: center;
}

/* ============== TABS NAV (sticky) ============== */
.xc-tabs {
    background: rgba(247, 246, 241, 0.92);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    position: sticky;
    top: 0;
    z-index: 10;
}
.xc-tabs__inner {
    display: flex; align-items: center; gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 6px 0;
    max-width: 720px;
    margin: 0 auto;
    justify-content: center;
}
.xc-tabs__inner::-webkit-scrollbar { display: none; }
.xc-tab {
    padding: 10px 18px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: -0.005em;
    transition: all 0.18s;
}
.xc-tab:hover { color: var(--ink); }
.xc-tab.is-active {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 4px 10px -2px rgba(15,23,42,0.25);
}

/* ============== CONTENT ============== */
.xc-content {
    padding: 56px 0 80px;
    background: #f7f6f1;
}
.xc-content__inner {
    max-width: 760px;
    margin: 0 auto;
}

.xc-section {
    margin-bottom: 56px;
}

.xc-section__head {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--rule);
    text-align: left;
}
.xc-section__index {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 8px;
}
.xc-section__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
}

/* Prose */
.xc-prose {
    font-size: 16.5px;
    line-height: 1.75;
    color: var(--ink-2);
}
.xc-prose p { margin: 0 0 18px; }
.xc-prose p:last-child { margin-bottom: 0; }
.xc-prose strong { color: var(--ink); font-weight: 600; }
.xc-prose ul, .xc-prose ol { padding-left: 24px; margin: 0 0 18px; }
.xc-prose li { margin: 8px 0; }
.xc-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.xc-prose h3, .ed-subhead {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 32px 0 12px;
}

/* Speaker block */
.xc-speaker {
    display: flex; gap: 28px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
@media (max-width: 600px) {
    .xc-speaker { flex-direction: column; padding: 24px; gap: 18px; align-items: center; text-align: center; }
}
.xc-speaker__visual {
    width: 140px; height: 140px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    box-shadow: 0 16px 40px -10px rgba(79, 70, 229, 0.4);
    position: relative;
}
.xc-speaker__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.xc-speaker__visual span {
    width: 100%; height: 100%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
}
.xc-speaker__badge {
    position: absolute;
    bottom: 10px; left: 10px;
    padding: 3px 8px;
    background: rgba(255,255,255,0.95);
    color: var(--brand);
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.xc-speaker__body { flex: 1; min-width: 0; }
.xc-speaker__name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.028em;
    color: var(--ink);
    margin: 0 0 4px;
}
.xc-speaker__role {
    display: block;
    font-size: 13px;
    color: var(--ink-4);
    margin-bottom: 16px;
    letter-spacing: 0.005em;
}
.xc-speaker__bio {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0 0 16px;
}
.xc-speaker__link {
    background: none;
    border: 0;
    padding: 0;
    color: var(--brand);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 4px;
}
.xc-speaker__link:hover { color: var(--brand-2); }

/* Definition list (details) */
.xc-deflist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
}
@media (max-width: 600px) { .xc-deflist { grid-template-columns: 1fr; } }
.xc-deflist > div {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rule-soft);
    border-right: 1px solid var(--rule-soft);
}
.xc-deflist > div:nth-child(2n) { border-right: 0; }
.xc-deflist > div:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 600px) {
    .xc-deflist > div { border-right: 0; border-bottom: 1px solid var(--rule-soft); }
    .xc-deflist > div:last-child { border-bottom: 0; }
}
.xc-deflist dt {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin: 0 0 4px;
}
.xc-deflist dd {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.4;
}

/* Related horizontal list */
.xc-related {
    display: flex; flex-direction: column;
    gap: 10px;
}
.xc-rel {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s var(--ease-q);
    position: relative;
    overflow: hidden;
}
.xc-rel::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand), var(--violet));
    opacity: 0;
    transition: opacity 0.2s;
}
.xc-rel--live::before { background: linear-gradient(180deg, #ef4444, #f97316); }
.xc-rel:hover { transform: translateX(2px); border-color: var(--brand); box-shadow: var(--shadow-md); color: var(--ink); }
.xc-rel:hover::before { opacity: 1; }

.xc-rel__mark {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    box-shadow: 0 6px 16px -4px rgba(79, 70, 229, 0.3);
}
.xc-rel--live .xc-rel__mark { background: linear-gradient(135deg, #ef4444, #f97316); box-shadow: 0 6px 16px -4px rgba(239, 68, 68, 0.3); }

.xc-rel__body { flex: 1; min-width: 0; }
.xc-rel__meta {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 4px;
}
.xc-rel__tag {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.14em;
    padding: 3px 8px;
    border-radius: 999px;
}
.xc-rel--live .xc-rel__tag { background: var(--live-soft); color: var(--live); }
.xc-rel--rec .xc-rel__tag { background: var(--brand-soft); color: var(--brand); }
.xc-rel__pulse {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--live);
    animation: pulse 1.6s ease-out infinite;
}
.xc-rel__date {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--ink-4);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.xc-rel__title {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.xc-rel__sp {
    font-size: 12.5px;
    color: var(--ink-4);
}
.xc-rel__arrow {
    width: 34px; height: 34px;
    border-radius: 999px;
    background: var(--paper-3);
    color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.25s var(--ease-q);
}
.xc-rel:hover .xc-rel__arrow { background: var(--ink); color: #fff; transform: translateX(3px); }

/* ============== STICKY BOTTOM BAR ============== */
.xc-stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(11, 18, 32, 0.96);
    backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #fff;
    z-index: 70;
    transform: translateY(110%);
    transition: transform 0.32s var(--ease-q);
    box-shadow: 0 -12px 28px -8px rgba(0,0,0,0.4);
}
.xc-stickybar.is-visible { transform: translateY(0); }
.xc-stickybar__inner {
    display: flex; align-items: center; gap: 16px;
    padding: 12px 0;
}
.xc-stickybar__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.xc-stickybar__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xc-stickybar__meta {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    display: flex; align-items: center; gap: 6px;
    margin-top: 2px;
}
.xc-stickybar__meta strong {
    color: #c4b5fd;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-left: 6px;
    letter-spacing: -0.015em;
}
.xc-stickybar__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 22px;
    background: #fff;
    color: var(--ink);
    border: 0;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.xc-stickybar__btn:hover {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 6px 16px -2px rgba(79, 70, 229, 0.6);
}

@media (max-width: 600px) {
    .xc-stickybar__name { font-size: 13px; max-width: 180px; }
    .xc-stickybar__meta { font-size: 11px; }
    .xc-stickybar__btn { padding: 10px 16px; font-size: 12.5px; }
}

/* =========================================================================
   ▓▓▓ PX — Unified page system + footer polish ▓▓▓
   Upgrades ed-page, ed-listing, ed-auth, ed-prose, ed-faq, ed-page-body
   so every secondary page (about, contact, faq, terms, privacy, refund,
   speakers, listings, auth, dashboard) gets the unified premium look.
   ========================================================================= */

/* ============================================================
   PAGE HERO — used by about, contact, faq, terms, privacy, refund
   ============================================================ */
section.ed-page {
    position: relative !important;
    padding: clamp(48px, 6vw, 80px) 0 clamp(44px, 5vw, 64px) !important;
    background:
        radial-gradient(120% 100% at 85% -10%, rgba(91,80,232,0.28) 0%, transparent 55%),
        var(--primary) !important;
    color: #fff !important;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 0 !important;
    margin-bottom: 0;
}
section.ed-page::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.10) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0 1px, transparent 1px 44px);
    -webkit-mask-image: linear-gradient(170deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 90%);
    mask-image: linear-gradient(170deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 90%);
    pointer-events: none;
    z-index: 0;
}
.ed-page .container { position: relative; z-index: 1; max-width: 1100px !important; }

.ed-page__bread, .ed-listing__bread {
    display: inline-flex !important; align-items: center; gap: 8px;
    font-family: var(--font-sans) !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.5) !important;
    margin-bottom: 20px !important;
    letter-spacing: 0 !important;
    text-transform: none;
}
.ed-page__bread a, .ed-listing__bread a {
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    transition: color 0.15s;
}
.ed-page__bread a:hover, .ed-listing__bread a:hover { color: #fff !important; }
.ed-page__bread svg, .ed-listing__bread svg { color: rgba(255,255,255,0.35) !important; }
.ed-page__bread span:last-child, .ed-listing__bread span:last-child {
    color: #fff !important; font-weight: 600;
}

.ed-page__kicker, .ed-listing__pulse {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    text-transform: none !important;
    padding: 5px 11px !important;
    background: rgba(91,80,232,0.22) !important;
    color: #c7c2fb !important;
    border: 1px solid rgba(91,80,232,0.4) !important;
    border-radius: 999px !important;
    margin-bottom: 20px !important;
}

.ed-page__title, .ed-page__title--lg, .ed-listing__h1 {
    font-family: var(--font-display) !important;
    font-size: clamp(32px, 4.6vw, 56px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 0 16px !important;
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}
.ed-page__title em, .ed-listing__h1-accent {
    font-style: normal !important;
    background: none !important;
    -webkit-text-fill-color: currentColor !important;
    color: #a99ff6 !important;
}

.ed-page__lede, .ed-listing__lede {
    font-family: var(--font-sans) !important;
    font-size: clamp(15px, 1.4vw, 18px) !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.72) !important;
    max-width: 620px;
    margin: 0 !important;
    font-weight: 400 !important;
}
.ed-page__lede a, .ed-listing__lede a {
    color: #c7c2fb !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
}
.ed-page__lede a:hover { color: #fff !important; }

.ed-page__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}
.ed-page__head > div:last-child {
    color: rgba(255,255,255,0.7);
}
.ed-page__head .ed-btn--ghost {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.18) !important;
    color: #fff !important;
}
.ed-page__head .ed-btn--ghost:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.35) !important;
}

/* ============================================================
   LISTING HERO — used by live-webinars, recorded-webinar, search
   Hyperline light theme: off-white, charcoal heading, faint grid.
   ============================================================ */
section.ed-listing {
    position: relative !important;
    padding: clamp(44px, 6vw, 76px) 0 clamp(40px, 5vw, 60px) !important;
    background:
        radial-gradient(120% 100% at 85% -10%, rgba(91,80,232,0.28) 0%, transparent 55%),
        var(--primary) !important;
    color: #fff !important;
    overflow: hidden;
    isolation: isolate;
    border-bottom: 0 !important;
    margin-bottom: 0;
}
section.ed-listing::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,0.10) 0 1px, transparent 1px 44px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.10) 0 1px, transparent 1px 44px);
    -webkit-mask-image: linear-gradient(170deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 90%);
    mask-image: linear-gradient(170deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 90%);
    pointer-events: none;
}
section.ed-listing .container { position: relative; z-index: 1; max-width: 1280px !important; }

.ed-listing__grid {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: end;
    gap: 24px !important;
    margin-bottom: 0;
}
@media (max-width: 760px) { .ed-listing__grid { grid-template-columns: 1fr !important; } }
.ed-listing__meta {
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
    color: rgba(255,255,255,0.65) !important;
    border-bottom: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}
@media (max-width: 760px) { .ed-listing__meta { align-items: flex-start; } }
.ed-listing__count {
    display: flex; flex-direction: column;
    font-family: var(--font-display) !important;
    font-size: 40px !important; font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    color: #fff !important;
    line-height: 1;
}
.ed-listing__count small { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.55); letter-spacing: 0; margin-top: 6px; }
.ed-listing__pulse {
    margin-bottom: 0 !important;
    background: rgba(239,68,68,0.22) !important;
    border: 1px solid rgba(239,68,68,0.4) !important;
    color: #fca5a5 !important;
}

/* ============================================================
   PAGE BODY (white card surface that sits over the dark hero)
   ============================================================ */
section.ed-page-body, section.ed-listing-body {
    background: var(--secondary) !important;
    padding: 40px 0 80px !important;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    section.ed-page-body .container,
    section.ed-listing-body .container {
        padding: 32px 20px !important;
        border-radius: 20px;
    }
}

/* For pages that just dump content under hero without nested .container, give body breathing room */
body.cf-body section.ed-page-body .container,
body.cf-body section.ed-listing-body .container { background: transparent; padding: 0 !important; box-shadow: none; border: 0; }

/* ============================================================
   GRID with side rail
   ============================================================ */
.ed-page-grid, .ed-page-grid--wide {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 280px !important;
    gap: 48px !important;
    align-items: start;
}
.ed-page-grid--wide { grid-template-columns: minmax(0, 1fr) 320px !important; }
@media (max-width: 880px) {
    .ed-page-grid, .ed-page-grid--wide { grid-template-columns: 1fr !important; gap: 32px !important; }
}

.ed-rail-block {
    background: var(--paper-2) !important;
    border: 1px solid var(--rule) !important;
    border-radius: 16px !important;
    padding: 24px !important;
    margin-bottom: 16px;
}
.ed-rail-block__head {
    font-family: var(--font-mono) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: var(--ink-4) !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule-soft);
}

/* ============================================================
   EDITORIAL PROSE (terms, privacy, refund, about content)
   ============================================================ */
.ed-prose, .webinar-desc {
    max-width: 760px;
    color: var(--ink-2);
    line-height: 1.75 !important;
    font-size: 16.5px !important;
    font-family: var(--font-sans) !important;
}
.ed-prose p, .webinar-desc p { margin: 0 0 18px !important; }
.ed-prose strong, .webinar-desc strong { color: var(--ink) !important; font-weight: 600 !important; }
.ed-prose h2, .ed-prose h3, .webinar-desc h2, .webinar-desc h3, .ed-subhead {
    font-family: var(--font-display) !important;
    color: var(--ink) !important;
    letter-spacing: -0.025em !important;
    font-weight: 800 !important;
    margin-top: 36px !important;
    margin-bottom: 12px !important;
    line-height: 1.2 !important;
}
.ed-prose h2 { font-size: 28px !important; }
.ed-prose h3 { font-size: 20px !important; }
.ed-prose a, .webinar-desc a {
    color: var(--brand) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    text-decoration-thickness: 1.5px !important;
}
.ed-prose ul, .ed-prose ol, .webinar-desc ul, .webinar-desc ol {
    padding-left: 22px !important;
    margin: 0 0 18px !important;
}
.ed-prose li, .webinar-desc li { margin: 8px 0 !important; }

/* ============================================================
   FAQ ACCORDION (faq page)
   ============================================================ */
.ed-faq { display: flex; flex-direction: column; gap: 12px; }
.ed-faq__item {
    background: #fff;
    border: 1px solid var(--rule) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.2s !important;
}
.ed-faq__item[open] {
    border-color: var(--brand) !important;
    box-shadow: 0 12px 28px -8px rgba(79,70,229,0.18);
}
.ed-faq__item summary {
    list-style: none !important;
    cursor: pointer;
    padding: 22px 26px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: -0.018em !important;
    color: var(--ink) !important;
}
.ed-faq__item summary::-webkit-details-marker { display: none; }
.ed-faq__item summary::after {
    content: '';
    width: 28px; height: 28px;
    border-radius: 999px;
    background: var(--paper-3);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230b1220' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.25s var(--ease-q), background-color 0.2s;
    flex-shrink: 0;
}
.ed-faq__item[open] summary::after {
    transform: rotate(180deg);
    background-color: var(--brand-soft);
}
.ed-faq__item .ed-faq__body, .ed-faq__item > div:last-child {
    padding: 0 26px 24px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: var(--ink-3) !important;
}

/* ============================================================
   AUTH PAGES (login / register / forgotpassword)
   ============================================================ */
section.ed-auth {
    background: radial-gradient(ellipse at 50% 0%, #1e1b4b 0%, #0b1220 75%) !important;
    padding: 80px 0 100px !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
section.ed-auth::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124,58,237,0.35), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.22), transparent 50%);
}
section.ed-auth::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 0%, transparent 70%);
}
.ed-auth .container { position: relative; z-index: 1; }

.ed-auth__split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    background: #fff;
    border-radius: 28px !important;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15,23,42,0.05), 0 40px 80px -24px rgba(15,23,42,0.4) !important;
    max-width: 1080px !important;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.08) !important;
}

.ed-auth__visual {
    background: linear-gradient(160deg, #0b1220 0%, #1e1b4b 50%, #4338ca 100%) !important;
    color: #fff !important;
    padding: 56px 48px !important;
    display: flex; flex-direction: column; justify-content: space-between;
    position: relative;
    overflow: hidden;
}
.ed-auth__visual::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(236, 72, 153, 0.35), transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(124, 58, 237, 0.4), transparent 55%);
}
.ed-auth__visual::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 80%);
}
.ed-auth__visual > * { position: relative; z-index: 1; }

.ed-auth__visual-quote {
    font-family: var(--font-display) !important;
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 600 !important;
    letter-spacing: -0.022em !important;
    color: #fff !important;
}
.ed-auth__visual-meta { font-size: 13px !important; color: rgba(255,255,255,0.7) !important; }
.ed-auth__visual-stats { display: flex; gap: 36px; margin-top: 36px; }
.ed-auth__visual-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #c7d2fe);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ed-auth__visual-stat span {
    font-size: 11.5px !important;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
}

.ed-auth__form-side { padding: 56px 56px !important; background: #fff; }
@media (max-width: 880px) {
    .ed-auth__split { grid-template-columns: 1fr !important; max-width: 480px !important; }
    .ed-auth__visual { display: none !important; }
    .ed-auth__form-side { padding: 40px 28px !important; }
}

.ed-auth__kicker {
    display: inline-block;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: var(--brand) !important;
    padding: 5px 12px;
    background: var(--brand-soft);
    border-radius: 999px;
    margin-bottom: 14px !important;
}
.ed-auth__title {
    font-family: var(--font-display) !important;
    font-size: clamp(28px, 3.4vw, 38px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    font-weight: 800 !important;
    color: var(--ink) !important;
    margin: 8px 0 10px !important;
}
.ed-auth__lede {
    font-size: 15px !important;
    color: var(--ink-3) !important;
    line-height: 1.6;
    margin: 0 0 28px !important;
}
.ed-auth__alt {
    margin-top: 28px !important;
    padding-top: 24px;
    border-top: 1px solid var(--rule-soft);
    text-align: center;
    font-size: 14px !important;
    color: var(--ink-3) !important;
}
.ed-auth__alt a { color: var(--brand) !important; font-weight: 700 !important; text-decoration: none; }
.ed-auth__alt a:hover { color: var(--brand-2) !important; text-decoration: underline; }

/* ============================================================
   FORM polish (used by auth, contact, support, billing, etc.)
   ============================================================ */
.ed-form { display: flex; flex-direction: column; gap: 18px; }
.ed-form-row label, .ed-form label {
    display: block !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    color: var(--ink-2) !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
}

.ed-input, .ed-select, .ed-textarea {
    width: 100% !important;
    background: var(--paper-2) !important;
    border: 1.5px solid transparent !important;
    border-radius: 12px !important;
    padding: 13px 16px !important;
    font-size: 14.5px !important;
    color: var(--ink) !important;
    font-family: var(--font-sans) !important;
    transition: all 0.18s !important;
    outline: none !important;
    box-shadow: none !important;
}
.ed-input::placeholder, .ed-textarea::placeholder { color: var(--ink-5) !important; }
.ed-input:hover, .ed-select:hover, .ed-textarea:hover { background: var(--paper-3) !important; }
.ed-input:focus, .ed-select:focus, .ed-textarea:focus {
    background: #fff !important;
    border-color: var(--brand) !important;
    box-shadow: 0 0 0 4px var(--brand-soft) !important;
}
select.ed-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat;
    background-position: right 14px center !important;
    padding-right: 40px !important;
}
.ed-textarea { min-height: 140px; resize: vertical; }

.ed-form__submit, .ed-form__submit--full {
    display: inline-flex !important;
    align-items: center; justify-content: center;
    gap: 8px;
    padding: 14px 24px !important;
    background: var(--ink) !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    font-family: var(--font-sans) !important;
    font-size: 14.5px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.18s var(--ease-q) !important;
    box-shadow: 0 8px 20px -6px rgba(15,23,42,0.3) !important;
    text-transform: none !important;
    letter-spacing: -0.005em !important;
}
.ed-form__submit:hover, .ed-form__submit--full:hover {
    background: var(--brand) !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -6px rgba(79,70,229,0.5) !important;
}
.ed-form__submit--full { width: 100% !important; }

/* ============================================================
   CONTACT TILES (used by contact.php)
   ============================================================ */
.ed-contact-tiles {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px;
    margin: 32px 0 40px !important;
}
@media (max-width: 760px) { .ed-contact-tiles { grid-template-columns: 1fr !important; } }
.ed-contact-tile {
    background: #fff !important;
    border: 1px solid var(--rule) !important;
    border-radius: 18px !important;
    padding: 24px !important;
    transition: all 0.22s var(--ease-q) !important;
    box-shadow: var(--shadow-xs);
}
.ed-contact-tile:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand) !important;
}
.ed-contact-tile__icon {
    width: 44px !important; height: 44px !important;
    background: linear-gradient(135deg, var(--brand-soft), #fce7f3) !important;
    color: var(--brand) !important;
    border-radius: 12px !important;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 16px !important;
}
.ed-contact-tile__label {
    font-family: var(--font-mono) !important;
    font-size: 10.5px !important;
    color: var(--ink-4) !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
}
.ed-contact-tile__value {
    display: block !important;
    margin-top: 4px;
    font-family: var(--font-display) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    letter-spacing: -0.015em !important;
}

/* ============================================================
   TILES (about-page features)
   ============================================================ */
.ed-tiles {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 18px !important;
}
@media (max-width: 880px) { .ed-tiles { grid-template-columns: 1fr !important; } }
.ed-tile {
    background: #fff !important;
    border: 1px solid var(--rule) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    transition: all 0.25s var(--ease-q) !important;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.ed-tile::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--violet), #ec4899);
    opacity: 0;
    transition: opacity 0.25s;
}
.ed-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand) !important; }
.ed-tile:hover::before { opacity: 1; }
.ed-tile__num {
    font-family: var(--font-display) !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    letter-spacing: -0.04em !important;
    background: linear-gradient(135deg, var(--brand), var(--violet), #ec4899) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 12px !important;
    line-height: 1;
}
.ed-tile__title {
    font-family: var(--font-display) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.022em !important;
    color: var(--ink) !important;
    margin: 0 0 8px !important;
}
.ed-tile__desc {
    font-size: 14.5px !important;
    color: var(--ink-3) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* ============================================================
   BACK LINK
   ============================================================ */
.ed-back-link {
    display: inline-flex !important;
    align-items: center; gap: 6px;
    padding: 8px 14px !important;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    color: var(--ink-2) !important;
    border-radius: 999px;
    font-size: 13px !important;
    font-weight: 600;
    text-decoration: none !important;
    margin-bottom: 20px !important;
    transition: all 0.18s;
    cursor: pointer;
}
.ed-back-link:hover {
    background: var(--ink);
    color: #fff !important;
    border-color: var(--ink);
}

/* ============================================================
   PAGINATION
   ============================================================ */
.ed-pagination {
    display: flex !important;
    gap: 6px !important;
    justify-content: center;
    margin-top: 56px !important;
    flex-wrap: wrap;
}
.ed-pagination a, .ed-pagination span {
    min-width: 40px; height: 40px;
    padding: 0 14px !important;
    display: inline-flex; align-items: center; justify-content: center;
    background: #fff !important;
    border: 1px solid var(--rule) !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ink-2) !important;
    text-decoration: none !important;
    transition: all 0.15s;
}
.ed-pagination a:hover { border-color: var(--ink) !important; color: var(--ink) !important; transform: translateY(-1px); }
.ed-pagination .active, .ed-pagination [aria-current] {
    background: var(--ink) !important;
    color: #fff !important;
    border-color: var(--ink) !important;
}

/* ============================================================
   TOOLBAR / FILTERS (search, listing)
   ============================================================ */

.ed-chip {
    display: inline-flex !important;
    align-items: center; gap: 6px;
    padding: 8px 14px !important;
    background: #fff !important;
    border: 1px solid var(--rule) !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--ink-2) !important;
    text-decoration: none !important;
    transition: all 0.15s !important;
    cursor: pointer;
}
.ed-chip:hover { border-color: var(--ink-2) !important; color: var(--ink) !important; }
.ed-chip.active, .ed-chip--active {
    background: var(--ink) !important; color: #fff !important; border-color: var(--ink) !important;
}
.ed-chip__count {
    font-size: 11px !important;
    padding: 1px 7px !important;
    background: var(--paper-3) !important;
    border-radius: 999px !important;
    color: var(--ink-4) !important;
}
.ed-chip.active .ed-chip__count { background: rgba(255,255,255,0.18) !important; color: rgba(255,255,255,0.9) !important; }

/* ============================================================
   FOOTER POLISH — fix layout proportions + premium feel
   ============================================================ */
footer.ce-footer { position: relative; }
footer.ce-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124,58,237,0.5), rgba(236,72,153,0.5), transparent);
}

footer.ce-footer .ce-footer__top {
    padding: 64px 0 48px !important;
}

footer.ce-footer .ce-footer__top .row {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr !important;
    gap: 40px !important;
    margin: 0 !important;
}
@media (max-width: 880px) {
    footer.ce-footer .ce-footer__top .row {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px !important;
    }
    footer.ce-footer .ce-footer__top .row > div:first-child {
        grid-column: 1 / -1;
    }
    footer.ce-footer .ce-footer__top .row > div:last-child {
        grid-column: 1 / -1;
    }
}
@media (max-width: 540px) {
    footer.ce-footer .ce-footer__top .row { grid-template-columns: 1fr !important; }
    footer.ce-footer .ce-footer__top .row > div { grid-column: 1 / -1 !important; }
}
footer.ce-footer .ce-footer__top .row > div { padding: 0 !important; max-width: 100% !important; flex: none !important; }

footer.ce-footer .ce-footer__brand img.ce-footer__logo,
footer.ce-footer .ce-footer__logo {
    max-height: 38px !important;
    margin-bottom: 18px;
    filter: brightness(0) invert(1) !important;
}
footer.ce-footer .ce-footer__tagline {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    color: rgba(255,255,255,0.72) !important;
    max-width: 340px;
    margin: 0 0 24px !important;
}
footer.ce-footer .ce-footer__heading {
    font-family: var(--font-mono) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: #c4b5fd !important;
    margin-bottom: 22px !important;
}


/* =========================================================================
   ▓▓▓ PF — Conference page (clean premium course-page layout) ▓▓▓
   Skillshare/Coursera-inspired but premium. Standalone pf-* namespace.
   Body class .pf-body opts out of cf-body/xc-body overrides above.
   ========================================================================= */

.pf-body { background: #fafafe; color: var(--ink); }

/* Disable the .ed-page dark hero treatment on conference page only */
body.pf-body section.ed-page,
body.pf-body section.ed-listing { display: none !important; }

/* ============== HERO ============== */
.pf-hero {
    position: relative;
    padding: 40px 0 48px;
    background: linear-gradient(180deg, #0b1220 0%, #1e1b4b 60%, #312e81 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.pf-hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.pf-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}
.pf-hero__orb--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #7c3aed, transparent 70%);
    top: -180px; right: -100px;
    opacity: 0.5;
}
.pf-hero__orb--2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #ec4899, transparent 70%);
    bottom: -200px; left: -100px;
    opacity: 0.3;
}
.pf-hero__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.pf-hero .container { position: relative; z-index: 1; max-width: 1280px; }

/* Breadcrumb */
.pf-bread {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.pf-bread a { color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.15s; }
.pf-bread a:hover { color: #fff; }
.pf-bread svg { opacity: 0.4; }
.pf-bread > span:last-child { color: #fff; font-weight: 500; }

/* Chips */
.pf-hero__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pf-chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
}
.pf-chip--live { background: rgba(239,68,68,0.18); border-color: rgba(239,68,68,0.4); color: #fca5a5; }
.pf-chip--rec  { background: rgba(124,58,237,0.2); border-color: rgba(124,58,237,0.4); color: #c4b5fd; }
.pf-chip--ce   { background: rgba(16,185,129,0.18); border-color: rgba(16,185,129,0.35); color: #6ee7b7; }
.pf-chip__pulse {
    width: 6px; height: 6px; border-radius: 50%;
    background: #fca5a5;
    animation: pulse 1.6s ease-out infinite;
}

/* Title */
.pf-hero__title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.4vw, 48px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 28px;
    max-width: 920px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
}

/* Meta row */
.pf-hero__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.pf-hero__byline {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 8px 18px 8px 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    backdrop-filter: blur(8px);
}
.pf-hero__mark {
    width: 38px; height: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ec4899, #7c3aed);
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.35);
}
.pf-hero__byline > div { display: flex; flex-direction: column; }
.pf-hero__byline span {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.pf-hero__byline strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-top: 1px;
}

.pf-hero__facts {
    list-style: none; padding: 0; margin: 0;
    display: flex; gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.pf-hero__facts li {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    font-weight: 500;
}
.pf-hero__facts svg { opacity: 0.7; }
.pf-hero__facts-countdown {
    padding: 5px 12px;
    background: rgba(251,191,36,0.16);
    border: 1px solid rgba(251,191,36,0.35);
    border-radius: 999px;
    color: #fde68a !important;
    font-weight: 700 !important;
    font-size: 12.5px !important;
}
.pf-hero__count-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fbbf24;
    animation: pulse 1.6s ease-out infinite;
}

/* ============== MAIN ============== */
.pf-main { padding: 56px 0 96px; background: #fafafe; }
@media (max-width: 768px) { .pf-main { padding: 32px 0 100px; } }

.pf-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 48px;
    align-items: start;
}
@media (max-width: 1100px) {
    .pf-grid { grid-template-columns: 1fr; gap: 32px; }
}

.pf-content { min-width: 0; }
.pf-rail { min-width: 0; }
@media (min-width: 1101px) { .pf-rail { position: sticky; top: 88px; } }

/* Tabs */
.pf-tabs {
    display: flex; gap: 2px;
    padding: 6px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
    margin-bottom: 32px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 80px;
    z-index: 10;
}
.pf-tabs::-webkit-scrollbar { display: none; }
.pf-tab {
    padding: 10px 20px;
    border: 0;
    background: transparent;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-3);
    cursor: pointer;
    letter-spacing: -0.005em;
    white-space: nowrap;
    transition: all 0.18s;
}
.pf-tab:hover { color: var(--ink); }
.pf-tab.is-active {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 4px 10px -2px rgba(15,23,42,0.25);
}

/* Section */
.pf-section { margin-bottom: 48px; scroll-margin-top: 160px; }
.pf-section__title {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.028em;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--rule);
}

/* Prose */
.pf-prose {
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-2);
}
.pf-prose p { margin: 0 0 18px; }
.pf-prose p:last-child { margin-bottom: 0; }
.pf-prose strong { color: var(--ink); font-weight: 600; }
.pf-prose ul, .pf-prose ol { padding-left: 22px; margin: 0 0 18px; }
.pf-prose li { margin: 8px 0; }
.pf-prose a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.pf-prose h3, .ed-subhead {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin: 32px 0 12px;
}

/* Speaker block */
.pf-speaker {
    display: flex; gap: 28px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04);
}
@media (max-width: 600px) {
    .pf-speaker { flex-direction: column; padding: 24px; gap: 18px; }
}
.pf-speaker__avatar {
    width: 120px; height: 120px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    box-shadow: 0 12px 28px -10px rgba(79, 70, 229, 0.4);
}
.pf-speaker__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pf-speaker__avatar span {
    width: 100%; height: 100%;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
}
.pf-speaker__body { flex: 1; min-width: 0; }
.pf-speaker__name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0 0 4px;
}
.pf-speaker__role {
    display: block;
    font-size: 13px;
    color: var(--ink-4);
    margin-bottom: 14px;
}
.pf-speaker__bio {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-2);
    margin: 0 0 14px;
}
.pf-speaker__link {
    background: none;
    border: 0;
    padding: 0;
    color: var(--brand);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}
.pf-speaker__link:hover { color: var(--brand-2); }

/* Definition list */
.pf-deflist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0 0 24px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 16px;
    overflow: hidden;
}
@media (max-width: 600px) { .pf-deflist { grid-template-columns: 1fr; } }
.pf-deflist > div {
    padding: 16px 20px;
    border-bottom: 1px solid var(--rule-soft);
    border-right: 1px solid var(--rule-soft);
}
.pf-deflist > div:nth-child(2n) { border-right: 0; }
.pf-deflist > div:nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 600px) {
    .pf-deflist > div { border-right: 0; border-bottom: 1px solid var(--rule-soft); }
    .pf-deflist > div:last-child { border-bottom: 0; }
}
.pf-deflist dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin: 0 0 4px;
}
.pf-deflist dd {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.4;
}

/* Trust strip */
.pf-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 760px) { .pf-trust { grid-template-columns: 1fr; } }
.pf-trust > div {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
}
.pf-trust svg {
    color: var(--success);
    flex-shrink: 0;
    background: var(--success-soft);
    border-radius: 8px;
    padding: 4px;
    box-sizing: content-box;
}
.pf-trust strong {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
}
.pf-trust span {
    display: block;
    font-size: 12px;
    color: var(--ink-4);
    line-height: 1.4;
    margin-top: 2px;
}

/* Related list */
.pf-related { display: flex; flex-direction: column; gap: 10px; }
.pf-rel {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 14px;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s var(--ease-q);
    position: relative;
    overflow: hidden;
}
.pf-rel::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--brand), var(--violet));
    opacity: 0;
    transition: opacity 0.2s;
}
.pf-rel--live::before { background: linear-gradient(180deg, #ef4444, #f97316); }
.pf-rel:hover { transform: translateX(2px); border-color: var(--brand); box-shadow: var(--shadow-md); color: var(--ink); }
.pf-rel:hover::before { opacity: 1; }
.pf-rel__mark {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--violet));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}
.pf-rel--live .pf-rel__mark { background: linear-gradient(135deg, #ef4444, #f97316); }
.pf-rel > div { flex: 1; min-width: 0; }
.pf-rel__meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 12px; color: var(--ink-4); }
.pf-rel__tag {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand);
}
.pf-rel--live .pf-rel__tag { background: var(--live-soft); color: var(--live); }
.pf-rel h4 {
    font-family: var(--font-display);
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: -0.018em;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pf-rel__sp { font-size: 12px; color: var(--ink-4); }
.pf-rel > svg { color: var(--ink-3); flex-shrink: 0; transition: transform 0.2s; }
.pf-rel:hover > svg { transform: translateX(3px); color: var(--brand); }

/* ============== BUY CARD ============== */
.pf-buy {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15,23,42,0.04), 0 20px 48px -16px rgba(15,23,42,0.15);
}

.pf-buy__head {
    padding: 24px 24px 18px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fce7f3 100%);
    border-bottom: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
}
.pf-buy__head::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,0.18), transparent 70%);
}
.pf-buy__head > * { position: relative; }
.pf-buy__kicker {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 4px;
}
.pf-buy__price {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
    background: linear-gradient(135deg, var(--brand), var(--violet), #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pf-buy__sub {
    display: block;
    margin-top: 10px;
    font-size: 12.5px;
    color: var(--ink-3);
}

.pf-buy__form { padding: 0; }
.pf-buy__options { padding: 20px 24px 0; max-height: 360px; overflow-y: auto; }
.pf-buy__options::-webkit-scrollbar { width: 4px; }
.pf-buy__options::-webkit-scrollbar-thumb { background: var(--rule-strong); border-radius: 2px; }

.pf-optgroup { margin-bottom: 18px; }
.pf-optgroup:last-child { margin-bottom: 8px; }
.pf-optgroup__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 8px;
}

.pf-opt {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 14px;
    background: var(--paper-2);
    border: 1.5px solid transparent;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 6px;
    transition: all 0.16s var(--ease-q);
    position: relative;
}
.pf-opt:hover { background: var(--paper-3); }
.pf-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pf-opt__check {
    width: 20px; height: 20px;
    border: 1.5px solid var(--rule-strong);
    border-radius: 6px;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.16s;
}
.pf-opt input:checked + .pf-opt__check { background: var(--brand); border-color: var(--brand); }
.pf-opt input:checked + .pf-opt__check::after {
    content: '';
    width: 6px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
}
.pf-opt:has(input:checked) {
    background: var(--brand-soft);
    border-color: var(--brand);
}
.pf-opt__name {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink-2);
}
.pf-opt:has(input:checked) .pf-opt__name { color: var(--ink); font-weight: 600; }
.pf-opt__price {
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.015em;
}

/* Coupon */
.pf-coupon {
    display: flex; align-items: center; gap: 14px;
    margin: 4px 24px 0;
    padding: 12px 14px;
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    border: 1.5px dashed #fbbf24;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
    width: calc(100% - 48px);
}
.pf-coupon:hover { transform: translateY(-1px); box-shadow: 0 8px 20px -8px rgba(251, 191, 36, 0.45); }
.pf-coupon[data-copied="true"] {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: #10b981;
}
.pf-coupon__pct {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #b45309;
    line-height: 1;
    flex-shrink: 0;
}
.pf-coupon[data-copied="true"] .pf-coupon__pct { color: #047857; }
.pf-coupon__body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.pf-coupon__body strong {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: #92400e;
    letter-spacing: 0.04em;
}
.pf-coupon[data-copied="true"] .pf-coupon__body strong { color: #064e3b; }
.pf-coupon__status {
    font-size: 11px;
    color: #b45309;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-top: 2px;
}
.pf-coupon[data-copied="true"] .pf-coupon__status { color: #047857; }

/* Total */
.pf-buy__total {
    display: flex; justify-content: space-between; align-items: baseline;
    padding: 18px 24px 16px;
    margin-top: 12px;
    border-top: 2px solid var(--ink);
}
.pf-buy__total span {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-3);
}
.pf-buy__total strong {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.035em;
    color: var(--ink);
}

/* CTA */
.pf-buy__cta {
    display: flex !important; align-items: center; justify-content: center; gap: 8px;
    width: calc(100% - 48px);
    margin: 0 24px;
    padding: 15px 24px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s var(--ease-q);
    box-shadow: 0 8px 20px -6px rgba(15,23,42,0.3);
    letter-spacing: -0.005em;
}
.pf-buy__cta:hover {
    background: var(--brand);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -6px rgba(79,70,229,0.5);
}

/* Reassurance */
.pf-buy__check {
    list-style: none;
    padding: 16px 24px 8px;
    margin: 0;
    display: flex; flex-direction: column; gap: 6px;
}
.pf-buy__check li {
    display: flex; align-items: center; gap: 8px;
    font-size: 12.5px;
    color: var(--ink-3);
}
.pf-buy__check svg { color: var(--success); flex-shrink: 0; }

/* Share */
.pf-buy__share {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px;
    padding: 14px 24px 8px;
    margin-top: 4px;
    border-top: 1px solid var(--rule-soft);
}
.pf-buy__share > span {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-4);
    letter-spacing: 0.04em;
}
.pf-buy__share > div { display: flex; gap: 6px; }
.pf-buy__share a, .pf-buy__share button {
    width: 32px; height: 32px;
    background: var(--paper-2);
    border: 1px solid var(--rule);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-3);
    cursor: pointer;
    transition: all 0.15s;
    font-size: 13px;
    text-decoration: none;
}
.pf-buy__share a:hover, .pf-buy__share button:hover {
    background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-1px);
}
.pf-buy__status {
    padding: 0 24px;
    font-size: 11px;
    color: var(--success);
    font-weight: 600;
    min-height: 14px;
    text-align: center;
}

.pf-buy__alts {
    display: flex; gap: 8px; flex-wrap: wrap;
    padding: 12px 24px 22px;
    font-size: 12.5px;
    color: var(--ink-4);
    align-items: center;
}
.pf-buy__alts a { color: var(--ink-2); text-decoration: none; font-weight: 600; }
.pf-buy__alts a:hover { color: var(--brand); }
.pf-buy__alts span { color: var(--ink-5); }

/* Sticky bar */
.pf-stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: saturate(180%) blur(16px);
    border-top: 1px solid var(--rule);
    z-index: 70;
    transform: translateY(110%);
    transition: transform 0.32s var(--ease-q);
    box-shadow: 0 -8px 24px -8px rgba(15,23,42,0.12);
}
.pf-stickybar.is-visible { transform: translateY(0); }
.pf-stickybar__inner { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.pf-stickybar__info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.pf-stickybar__name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pf-stickybar__meta {
    font-size: 12px; color: var(--ink-4);
    display: flex; align-items: center; gap: 6px;
    margin-top: 2px;
}
.pf-stickybar__meta strong {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    margin-left: 4px;
}
.pf-stickybar__btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 11px 22px;
    background: var(--ink);
    color: #fff;
    border: 0;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
}
.pf-stickybar__btn:hover {
    background: var(--brand);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.45);
}
@media (max-width: 600px) {
    .pf-stickybar__name { font-size: 13px; max-width: 180px; }
    .pf-stickybar__btn { padding: 10px 16px; font-size: 12.5px; }
}
