/* =========================  EVX — Light Glass + Header Image Clean (без фиксов поверх фиксов) ========================= */

.evx {
    --navy: #103966;
    --red: #CD1D22;

    --bg: #F2F2F3;
    --text: #0f172a;
    --muted: #5b6472;

    /* glass */
    --glass: rgba(255, 255, 255, .16);
    --glass2: rgba(255, 255, 255, .12);

    /* “стеклянный” бордер */
    --border: rgba(255, 255, 255, .55);
    --borderInner: rgba(16, 57, 102, .10);

    --shadow: 0 18px 60px rgba(16, 57, 102, .18);
    --shadow2: 0 10px 26px rgba(16, 57, 102, .12);

    --radius: 18px;
    --radius2: 22px;

    color: var(--text);
    font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f2f2f3 0%, #ffffff 100%);
}

.evx * {
    box-sizing: border-box;
    margin: 0;
}

.evx a {
    color: inherit;
    text-decoration: none;
}

.evx-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 16px 90px;
    position: relative;
    z-index: 2;
}

/* =========================
   HEADER IMAGE (шапка сама по себе)
   ========================= */

.evx-bg {
    position: relative;
    overflow: hidden;
    z-index: 0;
    height: auto;
    aspect-ratio: 5 / 1;
}

/* картинка + плавный fade вниз */
.evx-bg:before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        /* лёгкая виньетка */
        radial-gradient(900px 420px at 50% 0%,
            rgba(16, 57, 102, .18),
            transparent 65%),
        /* растворение в фон секции */
        linear-gradient(180deg,
            rgba(242, 242, 243, 0.00) 0%,
            rgba(242, 242, 243, 0.10) 30%,
            rgba(242, 242, 243, 0.55) 65%,
            rgba(242, 242, 243, 0.98) 100%),
        /* КАРТИНКА */
        url("./assets/mic15_header_lp2.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: .98;
    filter: saturate(1.08) contrast(1.04);
    pointer-events: none;
}

/* мягкий шум поверх */
.evx-bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg,
            rgba(255, 255, 255, .06) 0px,
            rgba(255, 255, 255, .06) 1px,
            rgba(0, 0, 0, 0) 2px,
            rgba(0, 0, 0, 0) 4px);
    opacity: .08;
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* =========================
   TOP BAR
   ========================= */

.evx-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .60);
    background: var(--glass2);
    border-radius: 999px;

    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);

    box-shadow: var(--shadow2);
}

.evx-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: rgba(15, 23, 42, .74);
    padding-left: 8px;
    font-weight: 650;
}

.evx-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, var(--red));
    box-shadow: 0 0 0 5px rgba(205, 29, 34, .16);
}

.evx-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.evx-link {
    font-size: 15px;
    color: rgba(15, 23, 42, .68);
    padding: 10px 10px;
    border-radius: 999px;
    transition: .2s ease;
    font-weight: 600;
}

.evx-link:hover {
    background: rgba(16, 57, 102, .06);
    color: var(--navy);
}

.evx-orgs {
    padding: 18px 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.evx-orgs-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(2, 2, 2, 0.6);
    margin-bottom: 16px;
}

.evx-orgs-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}

.evx-org {
    display: flex;
    justify-content: center;
    align-items: center;
}

.evx-org img {
    max-height: 70px;
    max-width: 100%;
    object-fit: contain;
    opacity: .85;    
}

/* Buttons */
.evx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(16, 57, 102, .22);
    font-weight: 850;
    letter-spacing: .2px;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
    user-select: none;
}

.evx-btn:hover {
    transform: translateY(-1px);
}

.evx-btn:active {
    transform: translateY(0px);
}

.evx-btn-main {
    border-color: rgba(205, 29, 34, .30);
    background: linear-gradient(135deg, var(--red) 0%, #ff3b3b 100%);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(205, 29, 34, .22);
    font-weight: 700;
}

.evx-btn-soft {
    background: rgba(16, 57, 102, .10);
    border-color: rgba(16, 57, 102, .20);
    color: var(--navy);
}

.evx-btn-ghost {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(16, 57, 102, .18);
}

.evx-btn-full {
    width: 100%;
}

/* =========================
   GLASS CARDS (единый стиль)
   ========================= */

.evx-hero-left,
.evx-card,
.evx-item,
.evx-sp,
.evx-video,
.evx-register,
.evx-float {
    border-radius: var(--radius2);
    background: var(--glass);

    border: 1px solid var(--border);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .75),
        inset 0 0 0 1px var(--borderInner),
        var(--shadow);

    backdrop-filter: blur(26px) saturate(1.25) contrast(1.05);
    -webkit-backdrop-filter: blur(26px) saturate(1.25) contrast(1.05);

    position: relative;
    overflow: hidden;
}

/* диагональный блик */
.evx-hero-left:before,
.evx-card:before,
.evx-item:before,
.evx-sp:before,
.evx-video:before,
.evx-register:before,
.evx-float:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, 0) 45%);
    opacity: .65;
    pointer-events: none;
}

.evx-hero-left>*,
.evx-card>*,
.evx-item>*,
.evx-sp>*,
.evx-video>*,
.evx-register>*,
.evx-float>* {
    position: relative;
    z-index: 1;
}

/* =========================
   HERO
   ========================= */

.evx-hero {    
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 16px;
    align-items: stretch;
}

.evx-hero-left {
    padding: 26px 24px;
}

.evx-kicker {
    margin: 0 0 5px;
    color: rgba(16, 57, 102, .92);
    font-size: 18px;
    letter-spacing: .35px;
    font-weight: 800;
}

.evx-title {
    margin: 0 0 10px;
    font-size: 35px;
    line-height: 1.05;
    letter-spacing: -0.6px;
    color: var(--navy);
}

.evx-subtitle {
    margin: 0;
    color: rgba(15, 23, 42, .78);
    font-size: 16px;
    line-height: 1.65;
    max-width: 58ch;
}

.evx-metrics {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.evx-metric {
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .14);
    border-radius: 14px;
    padding: 12px 12px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.evx-metric-top {
    font-size: 14px;
    color: rgba(15, 23, 42, .64);
}

.evx-metric-val {
    margin-top: 6px;
    font-weight: 950;
    letter-spacing: .2px;
    color: var(--navy);
}

.evx-cta {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.evx-note {
    margin-top: 14px;
    font-size: 14px;
    color: rgba(15, 23, 42, .64);
    border-top: 1px solid rgba(16, 57, 102, .14);
    padding-top: 14px;
    font-weight: 500;
}

/* Right */
.evx-hero-right {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.evx-card {
    border-radius: var(--radius);
    padding: 18px;
}

.evx-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.evx-card-title {
    font-weight: 950;
    letter-spacing: .2px;
    color: var(--navy);
}

.evx-pill {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(205, 29, 34, .30);
    background: rgba(205, 29, 34, .12);
    color: var(--red);
    font-weight: 900;
    text-align: center;
}

.evx-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(15, 23, 42, .74);
    line-height: 1.65;
}

.evx-list li {
    margin: 8px 0;
}

.evx-card-foot {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid rgba(16, 57, 102, .14);
    padding-top: 14px;
}

.evx-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.evx-mini-k {
    font-size: 12px;
    color: rgba(15, 23, 42, .60);
}

.evx-mini-v {
    font-weight: 950;
    color: var(--navy);
}

.evx-float {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius);
}

.evx-float-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(205, 29, 34, .12);
    border: 1px solid rgba(205, 29, 34, .26);
}

.evx-float-title {
    font-weight: 950;
    color: var(--navy);
}

.evx-float-sub {
    font-size: 13px;
    color: rgba(15, 23, 42, .66);
    margin-top: 2px;
}

/* Features grid */
.evx-grid3 {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.evx-ic {
    font-size: 20px;
}

.evx-h3 {
    margin-top: 8px;
    font-weight: 950;
    color: var(--navy);
}

.evx-p {
    margin-top: 8px;
    color: rgba(15, 23, 42, .78);
    line-height: 1.6;
    font-size: 14px;
}

/* Sections */
.evx-section {
    margin-top: 22px;
}

.evx-sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.evx-h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.2px;
    color: var(--navy);
}

.evx-sec-sub {
    color: rgba(15, 23, 42, .66);
    font-size: 13px;
    max-width: 62ch;
}

/* Accordion */
.evx-accordion {
    display: grid;
    gap: 10px;
}

.evx-item {
    border-radius: var(--radius);
}

.evx-item summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--navy);
}

.evx-item summary::-webkit-details-marker {
    display: none;
}

.evx-sum-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.evx-sum-title {
    font-weight: 950;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.evx-sum-right {
    color: rgba(15, 23, 42, .62);
    font-size: 14px;
    font-weight: 600;
}

.evx-tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16, 57, 102, .12);
    border: 1px solid rgba(16, 57, 102, .22);
    color: var(--navy);
    font-weight: 900;
    text-align: center;
}

.evx-body {
    border-top: 1px solid rgba(16, 57, 102, .14);
    padding: 12px 16px 16px;
}

.evx-rows {
    display: grid;
    gap: 10px;
}

.evx-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 14px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.evx-row .t {
    color: var(--navy);
    font-weight: 950;
}

.evx-row .d {
    color: rgba(15, 23, 42, .72);
}

/* Speakers */
.evx-speakers {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.evx-sp {
    border-radius: var(--radius);
    padding: 14px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.evx-sp-name {
    font-weight: 700;
}

.evx-sp-role {    
    font-size: 13px;
}

.evx-sp:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(16, 57, 102, .18);
}

.evx-avatar {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--red));
    border: 0px solid rgba(255, 255, 255, .45);
    font-size: 48px;
    margin: 0 0 10px;
}

.evx-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 1;
  border-radius: 16px;
}

/* Video */
.evx-video {
    padding: 12px;
}

.evx-video-inner {
    border-radius: 5px;
    overflow: hidden;
    
    aspect-ratio: 16/9;
    display: flex;
}

.evx-video-placeholder {
    margin: auto;
    text-align: center;
    padding: 24px;
    color: rgba(255, 255, 255, .88);
}

.evx-ph-title {
    font-weight: 950;
    font-size: 16px;
}

.evx-ph-sub {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, .72);
}

/* Register */
.evx-register {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.evx-checks {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.evx-check {
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .14);
    color: rgba(15, 23, 42, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.evx-form {
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 18px;
    background: rgba(255, 255, 255, .12);
    padding: 14px;
    display: grid;
    gap: 10px;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.evx-lbl span {
    display: block;
    font-size: 12px;
    color: rgba(15, 23, 42, .64);
    margin: 0 0 6px;
    font-weight: 800;
}

.evx-form input {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(16, 57, 102, .22);
    background: rgba(255, 255, 255, .55);
    color: var(--text);
    outline: none;
}

.evx-form input::placeholder {
    color: rgba(15, 23, 42, .42);
}

.evx-form input:focus {
    border-color: rgba(205, 29, 34, .70);
    box-shadow: 0 0 0 4px rgba(205, 29, 34, .18);
}

.evx-legal {
    font-size: 12px;
    color: rgba(15, 23, 42, .58);
    line-height: 1.35;
}

.evx-toast {
    display: none;
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(205, 29, 34, .30);
    background: rgba(205, 29, 34, .12);
    color: var(--navy);
    font-weight: 800;
}

/* Responsive */
@media (max-width: 820px) {
    .evx-bg {
        height: 300px;
    }

    .evx-hero {
        grid-template-columns: 1fr;
    }

    .evx-title {
        font-size: 34px;
    }

    .evx-grid3 {
        grid-template-columns: 1fr;
    }

    .evx-speakers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .evx-register {
        grid-template-columns: 1fr;
    }

    .evx-sticky {
        display: block;
    }

    .evx-actions .evx-link {
        display: none;
    }
}

@media (max-width: 420px) {
    .evx-title {
        font-size: 30px;
    }

    .evx-metrics {
        grid-template-columns: 1fr;
    }
}

/* Fallback если blur нет */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {

    .evx-top,
    .evx-hero-left,
    .evx-card,
    .evx-item,
    .evx-sp,
    .evx-video,
    .evx-register,
    .evx-float {
        background: rgba(255, 255, 255, .88);
    }
}