/**
 * Breakfast — IP × AI (single stylesheet)
 * ---------------------------------------------------------------------------
 * 1. Root + page tokens, chrome, hero, content sections, contact, footer
 * 2. Speakers, conference agenda, tickets / attendee pass (shared patterns)
 * ---------------------------------------------------------------------------
 * Load after Bootstrap. Typography: `--ip-font-sans` / `--ip-font-serif` on `:root`.
 */

/* Horizontal bleed (e.g. hero glows with negative inset) widens scrollWidth; overflow-x on
   `body` alone often does not clip the root — the <html> canvas scrolls and shows the UA
   default (reads as a black strip on the right). Match page background here too. */
html {
    overflow-x: hidden;
    background-color: #0f061d;
}

/* Tokens (Direction A: teal chrome; lime reserved for primary CTAs & ticket pulse) */
:root {
    --primary-blue: #68da23;
    --highlight-red: #5a1cb8;
    --brand-teal: #42307a;
    --brand-orange: #68da23;
    --text-light: #ffffff;
    --text-muted: #64748b;
    --text-dark: #0f172a;
    --bg-light: #f8fafc;
    --surface-light: #ebe4f4;
    --border-light: rgba(94, 234, 212, 0.32);
    --gradient-hero: linear-gradient(
        115deg,
        rgba(56, 32, 112, 0.95) 0%,
        rgba(90, 55, 160, 0.82) 42%,
        rgba(94, 234, 212, 0.38) 100%
    );
    --gradient-section: linear-gradient(135deg, #42307a 0%, #5b4499 48%, #5eead4 100%);
    --ip-font-serif: "Libre Baskerville", Georgia, "Times New Roman", serif;
    --ip-font-sans: "Source Sans 3", system-ui, sans-serif;
    --ip-brand-purple: #42307a;
    --ip-brand-lime: #68da23;
    --ip-navy: #0f061d;
    --ip-slate: #1a0f32;
    --ip-panel: #2a1a4e;
    --ip-line: rgba(94, 234, 212, 0.38);
    --ip-gold: #68da23;
    --ip-gold-dim: #52b818;
    --ip-fog: #e8e0f5;
    --ip-muted: #c4b5dc;
    --ip-white: #f9f6ff;
    --ip-accent: #5eead4;
    --ip-radius: 14px;
    --ip-radius-lg: 22px;
}

/* Page shell: use `body` (not only `.page-ip-ai`) so CMS pages still match when the wrapper class is stripped */
body *,
body *::before,
body *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--ip-font-sans);
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--ip-fog);
    background: var(--ip-navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body h1,
body h2 {
    font-family: var(--ip-font-serif);
    font-weight: 700;
    letter-spacing: 0.02em;
}

body h3,
body h4 {
    font-family: inherit;
    font-weight: 400;
}

.blinks {
    animation: blinks 1.5s infinite ease;
}

@keyframes blinks {
    0%, 100% {
        background: linear-gradient(135deg, #dc3545, #fd7e14);
        color: #fff;
    }
    50% {
        background: linear-gradient(135deg, var(--ip-gold-dim), var(--ip-gold));
        color: #16082e;
    }
}

body a {
    color: inherit;
    text-decoration: none;
}

body a:hover {
    color: var(--ip-gold);
}

/* --- Header / navigation --- */
body .ip-header {
    position: relative;
    z-index: 1000;
}

body .ip-navbar {
    --ip-nav-pad-y: 1.1rem;
    width: 100%;
    padding: var(--ip-nav-pad-y) 0;
    background: transparent;
    transition: padding 0.35s ease;
}

body .ip-navbar.scrolled {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

body .ip-navbar.scrolled .ip-navbar__bar {
    background: rgba(18, 6, 42, 0.88);
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

/* Navbar: full-width bar (Bootstrap makes .navbar > .container a flex child — avoid shrink-to-content) */
body .ip-navbar > .container.ip-navbar__holder {
    flex: 1 1 100%;
    width: 100%;
    min-width: 0;
}

body .ip-navbar__bar {
    display: flex;
    align-items: center;
    width: 100%;
    min-width: 0;
    gap: 0.5rem 1rem;
    padding: 0.55rem 0.65rem 0.55rem 1.5rem;
    border-radius: 999px;
    flex-wrap: wrap;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.09) 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
    border: 1px solid rgba(94, 234, 212, 0.22);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(18px) saturate(1.35);
    -webkit-backdrop-filter: blur(18px) saturate(1.35);
    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        border-radius 0.35s ease;
}

@media (max-width: 991.98px) {
    body .ip-navbar__bar {
        border-radius: 18px;
        padding: 0.5rem 0.6rem 0.5rem 0.85rem;
    }
}

@media (min-width: 992px) {
    body .ip-navbar__bar {
        align-items: center;
        column-gap: 1rem;
        row-gap: 0.5rem;
    }

    body .ip-navbar__brand {
        justify-self: start;
    }

    body .ip-navbar__collapse {
        display: contents !important;
    }

    body .ip-navbar__links {
        justify-self: center;
        width: fit-content;
        max-width: 100%;
    }

    body .ip-navbar__cta {
        justify-self: end;
        margin-left: 0;
    }
}

body .ip-navbar__brand {
    display: flex;
    align-items: center;
    padding: 0.2rem 0.35rem 0.2rem 0;
    margin-right: 0;
    border-radius: 12px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

#attendees {
    /* background: #f8f9fa; */
    /*padding: 25px 0 30px;*/
}
#attendees logo-slider {
    --image-size: 100px;
    padding: 10px;
    overflow: hidden;
    max-width: auto;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
}
#attendees logo-slider div {
    display: flex;
    position: relative;
    animation: marquees 70s linear infinite;
    justify-content: space-around;
}
@keyframes marquees {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-80%);
    }
}
#attendees logo-slider img {
    display: block;
    min-width: var(--image-size);
    height: var(--image-size);
    margin: 0 .5vw;
}


body .ip-navbar__brand:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

body .ip-navbar__logo {
    display: block;
    width: auto;
    max-height: 40px;
    height: auto;
    transition: max-height 0.3s ease;
}

/* Hamburger only < lg — our display:inline-flex was overriding Bootstrap’s navbar-expand-lg hide */
@media (max-width: 991.98px) {
    body .ip-navbar__toggler {
        margin-left: auto;
        width: 46px;
        height: 46px;
        padding: 0;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border: 1px solid rgba(94, 234, 212, 0.35) !important;
        border-radius: 12px !important;
        background: rgba(22, 8, 48, 0.85) !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
        transition: border-color 0.2s ease, background 0.2s ease;
    }

    body .ip-navbar__toggler:hover {
        border-color: var(--ip-gold) !important;
        background: rgba(40, 18, 82, 0.95) !important;
    }

    body .ip-navbar__toggler:focus-visible {
        outline: 2px solid var(--ip-gold);
        outline-offset: 2px;
    }
}

@media (min-width: 992px) {
    body .ip-navbar__toggler {
        display: none !important;
    }
}

body .ip-navbar__toggler-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--ip-gold), #c8ff9a);
}

body .ip-navbar__collapse {
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 991.98px) {
    body .ip-navbar__collapse.show {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        flex-basis: 100%;
        margin-top: 0.75rem;
        padding: 1rem 1.1rem 1.15rem;
        border-radius: 14px;
        background: rgba(16, 5, 36, 0.94);
        border: 1px solid rgba(94, 234, 212, 0.15);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    }
}

body .ip-navbar__links {
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    margin: 0 !important;
    list-style: none;
}

@media (max-width: 991.98px) {
    body .ip-navbar__links {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        border-radius: 12px;
        padding: 0.35rem;
        margin-bottom: 1rem !important;
        background: rgba(255, 255, 255, 0.04);
    }
}

body .ip-nav-link {
    position: relative;
    color: rgba(232, 237, 245, 0.92) !important;
    font-family: var(--ip-font-sans) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.11em !important;
    text-transform: uppercase !important;
    padding: 0.55rem 0.95rem !important;
    border-radius: 999px !important;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

body .ip-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0.35rem;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--ip-gold);
    transform: translateX(-50%);
    transition: width 0.22s ease;
    opacity: 0.9;
}

body .ip-nav-link:hover {
    color: #fff !important;
    background: rgba(94, 234, 212, 0.12);
}

body .ip-nav-link:hover::after {
    width: 40%;
}

body .ip-nav-link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(94, 234, 212, 0.45);
}

@media (max-width: 991.98px) {
    body .ip-nav-link {
        border-radius: 10px !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.82rem !important;
    }

    body .ip-nav-link::after {
        display: none;
    }
}

body .ip-navbar__cta {
    margin-left: 0.65rem;
    padding: 0.62rem 1.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-shadow: 0 4px 18px rgba(104, 218, 35, 0.28);
}

body .ip-navbar__cta i {
    font-size: 0.7rem;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

body .ip-navbar__cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 991.98px) {
    body .ip-navbar__cta {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

body .ip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--ip-line);
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.2), rgba(120, 75, 210, 0.15));
    /*color: var(--ip-white) !important;*/
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body .ip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(120, 75, 210, 0.25);
    border-color: var(--ip-gold);
    color: #fff !important;
}

body .ip-btn--solid {
    background: linear-gradient(135deg, var(--ip-gold-dim), var(--ip-gold));
    color: #16082e;
    border-color: transparent;
}

body .ip-btn--solid:hover {
    color: #16082e !important;
}

/* --- Hero --- */
body .ip-hero {
    position: relative;
    z-index: 1;
    overflow: visible;
    padding: 12.5rem 0 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    background-color: #0f061d;
    background-image:
        radial-gradient(ellipse 100% 80% at 85% 15%, rgba(120, 75, 210, 0.32), transparent 52%),
        radial-gradient(ellipse 70% 60% at 0% 100%, rgba(94, 234, 212, 0.2), transparent 50%),
        radial-gradient(ellipse 50% 40% at 40% 0%, rgba(90, 55, 160, 0.22), transparent 45%),
        linear-gradient(168deg, rgba(12, 4, 24, 0.9) 0%, rgba(30, 13, 61, 0.82) 42%, rgba(18, 6, 31, 0.92) 100%),
        url("https://worldbigroup.com/patient-recruitment-crisis-breakfast/images/background/barcelona-bg.webp");
    background-repeat: no-repeat;
    background-size: auto, auto, auto, auto, cover;
    background-position: center;
}

/* body .ip-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(94, 234, 212, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 234, 212, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(120, 75, 210, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 75, 210, 0.04) 1px, transparent 1px);
    background-size: 56px 56px, 56px 56px, 14px 14px, 14px 14px;
    mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, black 20%, transparent 72%);
    pointer-events: none;
    z-index: 0;
} */

body .ip-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 42%,
        transparent 46%,
        transparent 58%,
        rgba(120, 75, 210, 0.06) 72%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 0;
}

body .ip-hero__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(72px);
    z-index: 0;
    opacity: 0.55;
}

body .ip-hero__glow--1 {
    width: min(55vw, 520px);
    height: min(55vw, 520px);
    top: -12%;
    right: -8%;
    background: radial-gradient(circle at 30% 30%, rgba(120, 75, 210, 0.5), rgba(15, 23, 42, 0.18) 55%, transparent 70%);
    animation: ip-hero-float 18s ease-in-out infinite;
}

body .ip-hero__glow--2 {
    width: min(42vw, 380px);
    height: min(42vw, 380px);
    bottom: -5%;
    left: -10%;
    background: radial-gradient(circle at 60% 40%, rgba(94, 234, 212, 0.38), rgba(56, 32, 112, 0.2) 60%, transparent 72%);
    animation: ip-hero-float 22s ease-in-out infinite reverse;
}

body .ip-hero__glow--3 {
    width: 280px;
    height: 280px;
    top: 40%;
    left: 35%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.28), transparent 65%);
    opacity: 0.35;
    animation: ip-hero-float 26s ease-in-out infinite 2s;
}

@keyframes ip-hero-float {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(2%, -3%) scale(1.04);
    }
    66% {
        transform: translate(-2%, 2%) scale(0.98);
    }
}

@media (prefers-reduced-motion: reduce) {
    body .ip-hero__glow {
        animation: none;
    }
}

body .ip-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Quick stats (post-hero, light band) --- */
body .ip-quick-stats {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: clamp(2.35rem, 5.5vw, 3.65rem) 0 clamp(2.5rem, 5vw, 3.35rem);
    background:
        radial-gradient(ellipse 90% 60% at 50% -20%, rgba(94, 234, 212, 0.07), transparent 55%),
        linear-gradient(180deg, #fdfcfe 0%, #f6f3fc 40%, #ebe5f4 100%);
}

body .ip-quick-stats::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 5%,
        rgba(94, 234, 212, 0.2) 38%,
        #68da23 50%,
        rgba(94, 234, 212, 0.2) 62%,
        transparent 95%
    );
    pointer-events: none;
    opacity: 0.92;
}

body .ip-quick-stats__head {
    max-width: 38rem;
    margin: 0 auto clamp(1.65rem, 3.5vw, 2.35rem);
    text-align: center;
}

body .ip-quick-stats__title {
    font-size: clamp(1.5rem, 3.4vw, 2.15rem);
    color: var(--ip-brand-purple);
    line-height: 1.2;

    text-wrap: balance;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
}

body .ip-quick-stats__head::after {
    content: "";
    display: block;
    width: min(4.25rem, 20vw);
    height: 3px;
    margin: 20px auto;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(94, 234, 212, 0.35), #68da23, rgba(167, 243, 228, 0.95));
    box-shadow: 0 0 20px rgba(94, 234, 212, 0.25);
}

body .ip-quick-stats__subtitle {
    font-size: clamp(1rem, 1.9vw, 1.15rem);
    font-weight: 500;
    color: rgba(42, 18, 72, 0.76);
    line-height: 1.6;
    margin: clamp(1rem, 2.4vw, 1rem) auto 0;
    text-wrap: balance;
}

body .ip-quick-stats__grid {
    max-width: 60rem;
    margin: 0 auto;
}

body .ip-quick-stats__row {
    align-items: stretch;
}

body .ip-quick-stats__card {
    display: flex;
    flex-direction: column;
    padding: 0;
    border-radius: var(--ip-radius-lg);
    text-align: center;
    overflow: hidden;
    position: relative;
    isolation: isolate;
    background: #2a1a4e;
    border: 1px solid rgba(255, 255, 255, 0.11);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.06),
        0 10px 28px rgba(36, 25, 56, 0.28),
        0 0 0 1px rgba(94, 234, 212, 0.07) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(10px) saturate(1.1);
    -webkit-backdrop-filter: blur(10px) saturate(1.1);
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

body .ip-quick-stats__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.4), #68da23, rgba(94, 234, 212, 0.4), transparent);
    opacity: 0.95;
    pointer-events: none;
    z-index: 1;
}

body .ip-quick-stats__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 85% at 50% -15%, rgba(94, 234, 212, 0.1), transparent 52%);
    opacity: 0.65;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.3s ease;
}

body .ip-quick-stats__card-inner {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    padding: 1.2rem 1rem 1.25rem;
    min-height: 100%;
}

body .ip-quick-stats__card:hover {
    transform: translateY(-5px);
    border-color: rgba(94, 234, 212, 0.5);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.08),
        0 18px 44px rgba(0, 0, 0, 0.32),
        0 0 56px rgba(94, 234, 212, 0.12),
        0 0 0 1px rgba(94, 234, 212, 0.14) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body .ip-quick-stats__card:hover::after {
    opacity: 1;
}

body .ip-quick-stats__card:hover .ip-quick-stats__value {
    text-shadow: 0 0 32px rgba(94, 234, 212, 0.4);
}

body .ip-quick-stats__label {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #68da23;
    margin: 0;
    line-height: 1.3;
    max-width: 100%;
}

body .ip-quick-stats__value {
    font-weight: 700;
    font-size: clamp(1.55rem, 3.4vw, 2.25rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    color: var(--ip-white);
    margin: 0;
    max-width: 100%;
}

body .ip-quick-stats__counter {
    font-variant-numeric: tabular-nums;
}

body .ip-quick-stats__desc {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(185, 168, 214, 0.95);
    margin: 0;
    padding-top: 0.35rem;
    line-height: 1.45;
    max-width: 100%;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    body .ip-quick-stats__card {
        background: #2a1a4e;
    }
}

@media (prefers-reduced-motion: reduce) {
    body .ip-quick-stats__card,
    body .ip-quick-stats__card:hover {
        transform: none;
        transition: none;
    }

    body .ip-quick-stats__card::after {
        transition: none;
    }

    body .ip-quick-stats__card:hover .ip-quick-stats__value {
        text-shadow: none;
    }
}

body .ip-hero__col--main {
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding-inline-end: clamp(0.25rem, 2vw, 1rem);
}

body .ip-hero__col--aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

body .ip-hero__lead-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
    position: relative;
    isolation: isolate;
    overflow: visible;
    text-align: center;
    padding: clamp(2.35rem, 4.8vw, 3.15rem) clamp(1.5rem, 3.5vw, 2.5rem) clamp(2.1rem, 4.8vw, 3.1rem);
    border-radius: clamp(22px, 3vw, 30px);
    /* background:
        linear-gradient(
            90deg,
            rgba(94, 234, 212, 0.22) 0,
            rgba(94, 234, 212, 0.06) 2px,
            transparent 2px,
            transparent 100%
        ),
        radial-gradient(ellipse 130% 90% at 50% -25%, rgba(94, 234, 212, 0.2), transparent 58%),
        radial-gradient(ellipse 85% 70% at 100% 100%, rgba(120, 75, 210, 0.18), transparent 55%),
        linear-gradient(
            168deg,
            rgba(255, 255, 255, 0.14) 0%,
            rgba(255, 255, 255, 0.05) 38%,
            rgba(30, 10, 62, 0.78) 100%
        ); */
    border: 2px solid rgb(88, 200, 62);
    box-shadow:
        0 0 0 1px rgba(94, 234, 212, 0.12) inset,
        0 1px 0 rgba(255, 255, 255, 0.12) inset,
        0 -18px 48px rgba(120, 75, 210, 0.08) inset,
        0 36px 90px rgba(0, 0, 0, 0.48),
        0 0 72px rgba(120, 75, 210, 0.14),
        0 0 100px rgba(94, 234, 212, 0.07);
    backdrop-filter: blur(22px) saturate(1.35);
    -webkit-backdrop-filter: blur(22px) saturate(1.35);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

body .ip-hero__lead-badge {
    position: absolute;
    top: -18px;
    right: clamp(10px, 2.2vw, 18px);
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem 0.4rem 0.45rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #7ae635 0%, var(--ip-gold) 42%, #4fb81a 100%);
    border: 1px solid rgba(34, 90, 24, 0.45);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 4px 14px rgba(0, 0, 0, 0.22);
    animation: ip-lead-badge-blink 3.2s ease-in-out infinite;
}

body .ip-hero__lead-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 1.28rem;
    height: 1.28rem;
    border-radius: 50%;
    background: #312e81;
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    line-height: 1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

body .ip-hero__lead-badge__text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    color: #1e3a8a;
}

@keyframes ip-lead-badge-blink {
    0%,
    34%,
    100% {
        opacity: 1;
    }
    37% {
        opacity: 0.32;
    }
    39% {
        opacity: 1;
    }
    41% {
        opacity: 0.32;
    }
    44%,
    100% {
        opacity: 1;
    }
}

body .ip-hero__lead-box:hover {
    transform: translateY(-5px);
    border-color: rgba(94, 234, 212, 0.28);
    box-shadow:
        0 0 0 1px rgba(94, 234, 212, 0.2) inset,
        0 1px 0 rgba(255, 255, 255, 0.16) inset,
        0 -18px 52px rgba(120, 75, 210, 0.12) inset,
        0 44px 100px rgba(0, 0, 0, 0.52),
        0 0 88px rgba(120, 75, 210, 0.22),
        0 0 120px rgba(94, 234, 212, 0.1);
}

body .ip-hero__lead-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(94, 234, 212, 0.65), rgba(255, 255, 255, 0.35), rgba(94, 234, 212, 0.65), transparent);
    border-radius: 999px;
    pointer-events: none;
    z-index: 1;
}

body .ip-hero__lead-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(145deg, transparent 52%, rgba(94, 234, 212, 0.07) 100%);
    opacity: 0.95;
}

@media (prefers-reduced-motion: reduce) {
    body .ip-hero__lead-box {
        transition: none;
    }

    body .ip-hero__lead-box:hover {
        transform: none;
    }

    body .ip-hero__lead-badge {
        animation: none;
    }
}

body .ip-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    width: max-content;
    max-width: 100%;
    gap: 0.55rem;
    padding: 0.45rem 1.1rem 0.45rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(94, 234, 212, 0.35);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(248, 250, 252, 0.96);
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 24px rgba(94, 234, 212, 0.08);
}

body .ip-hero__eyebrow i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.35), rgba(120, 75, 210, 0.25));
    color: var(--ip-gold);
    font-size: 0.9rem;
}

body .ip-hero__title {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    line-height: 1.08;
    color: var(--ip-white);
    margin: 0 0 1.5rem;
    max-width: 100%;
    overflow: visible;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
    font-weight: 700;
}

body .ip-hero__title-line {
    display: block;
}

body .ip-hero__title-line--accent {
    margin-top: 0.12em;
    padding-inline-end: 0.06em;
}

body .ip-hero__title-line--accent em {
    font-style: italic;
    margin-inline-end: 0.28em;
    padding-inline-end: 0.04em;
    background: linear-gradient(115deg, #c8ff9a 0%, var(--ip-gold) 45%, #3a8f12 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 18px rgba(94, 234, 212, 0.22));
}

body .ip-hero__lead-cta {
    position: absolute;
    bottom: -28px;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 1.35rem 0 0.35rem;
}

body .ip-hero__lead-cta .ip-btn {
    width: auto;
    max-width: 100%;
    margin-inline: auto;
    flex: 0 1 auto;
    padding-inline: clamp(1rem, 4vw, 1.75rem);
}

body .ip-hero__lead {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    font-size: clamp(1rem, 1.28vw, 1.12rem);
    line-height: 1.82;
    letter-spacing: 0.01em;
    color: rgba(238, 242, 249, 0.94);
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: center;
    text-wrap: balance;
    background: none;
    box-shadow: none;
    border-radius: 0;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.25);
}

body .ip-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

body .ip-meta__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 1.15rem 0.75rem 0.75rem;
    border-radius: 14px;
    background: rgb(255 255 255 / 25%);
    backdrop-filter: blur(6px);
    border: 1px solid var(--ip-brand-lime);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body .ip-meta__item:hover {
    transform: translateY(-3px);
    border-color: rgba(94, 234, 212, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

body .ip-meta__icon {
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, rgb(94 234 105 / 89%), rgb(62 24 139));
    color: #ffffff;
    font-size: 1rem;
}

body .ip-meta__text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

body .ip-meta__label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(196, 206, 226, 0.95);
}

body .ip-meta__value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ip-fog);
    line-height: 1.25;
}

body .ip-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem;
}

body .ip-btn--hero-primary {
    padding: 0.85rem 1.75rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    box-shadow:
        0 4px 20px rgba(104, 218, 35, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    position: relative;
    overflow: hidden;
}

body .ip-btn--hero-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

body .ip-btn--hero-primary:hover::after {
    transform: translateX(100%);
}

body .ip-btn--hero-ghost {
    /* Ellipse was 280% — green sat past the pill edge, so only indigo showed. Size to the box so #68da23 reaches the rim. */
    background: radial-gradient( circle farthest-corner at 20% 20%, #312e81 0%, #68da23 188% );
    border: 1px solid #68da23;
    color: #ffffff !important;
    padding: 0.85rem 1.5rem;
    box-shadow:
        0 6px 24px rgba(49, 46, 129, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.65);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.25s ease,
        color 0.2s ease;
}

body .ip-btn--hero-ghost:hover {
    background: radial-gradient( circle farthest-corner at 20% 20%, #68da23 0%, #312e81 188% );
    border-color: rgba(190, 242, 100, 0.55);
    color: #ffffff !important;
    box-shadow:
        0 10px 32px rgba(91, 33, 182, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 0 28px rgba(104, 218, 35, 0.25);
    text-shadow:
        0 0 1px rgba(0, 0, 0, 0.85),
        0 1px 3px rgba(0, 0, 0, 0.55);
}

body .ip-btn--hero-ghost:focus-visible {
    outline: none;
    border-color: rgba(190, 242, 100, 0.75);
    box-shadow:
        0 0 0 3px rgba(104, 218, 35, 0.45),
        0 6px 24px rgba(49, 46, 129, 0.5);
}

@media (prefers-reduced-motion: reduce) {
    body .ip-btn--hero-primary::after {
        display: none;
    }
}

/* --- Objective --- */
body .ip-objective {
    padding: 4rem 0;
    background:
        radial-gradient(ellipse 100% 65% at 50% -5%, rgba(120, 75, 210, 0.38), transparent 52%),
        radial-gradient(ellipse 55% 45% at 100% 100%, rgba(35, 35, 218, 0.1), transparent 48%),
        radial-gradient(ellipse 50% 40% at 0% 80%, rgba(90, 55, 160, 0.14), transparent 50%),
        linear-gradient(168deg, #0f061d 0%, #1a0f32 28%, #2a1a4e 58%, #0f061d 100%);
}

body .ip-objective__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 992px) {
    body .ip-objective__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
        gap: clamp(2rem, 4vw, 3.5rem);
    }
}

body .ip-objective__content {
    text-align: left;
}

body .ip-objective__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.42rem 1.1rem 0.42rem 0.95rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #68da23;
    border: 1px solid #68da23;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
    margin-bottom: 1.15rem;
}

body .ip-objective__highlight {
    color: #68da23;
    font-weight: 700;
}

body .ip-objective h2 {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    color: var(--ip-white);
    margin: 0 0 1.25rem;
    max-width: 18ch;
}

body .ip-objective__media {
    margin: 0;
}

body .ip-objective__img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 16rem;
    object-fit: cover;
    border-radius: var(--ip-radius-lg);
    border: 1px solid rgba(94, 234, 212, 0.25);
    box-shadow:
        0 0 0 1px rgba(104, 218, 35, 0.12) inset,
        0 20px 48px rgba(0, 0, 0, 0.35);
}

body .ip-objective__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

body .ip-objective__list li {
    position: relative;
    padding: 0.85rem 0 0.85rem 2rem;
    font-size: clamp(1.02rem, 1.9vw, 1.2rem);
    line-height: 1.6;
    color: var(--ip-fog);
    border-bottom: 1px solid var(--brand-orange);
}

body .ip-objective__list li:last-child {
    border-bottom: none;
}

body .ip-objective__list li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 25px;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--ip-brand-lime);
    box-shadow: 0 0 10px rgba(104, 218, 35, 0.55);
}

/* --- Topics (key discussion points) --- */
body .ip-topics {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 7vw, 4.5rem) 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(90, 55, 160, 0.06), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(94, 234, 212, 0.04), transparent 45%),
        linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #ebe4f4 100%);
    color: #0f172a;
}

body .ip-topics__intro {
    margin: 0 auto 2.75rem;
    text-align: center;
}

body .ip-topics__intro .ip-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ip-brand-purple);
    margin-bottom: 0.65rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(90, 55, 160, 0.08);
    border: 1px solid rgba(30, 41, 59, 0.12);
}

body .ip-topics__intro h2 {
    font-size: clamp(1.85rem, 3.2vw, 2.55rem);
    color: #0f172a;
    margin: 0 0 0.85rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

body .ip-topics__intro p,
body .ip-topic p {
    margin: 0;
}

body .ip-topics__intro p {
    font-size: clamp(1rem, 1.85vw, 1.15rem);
    font-weight: 500;
    color: rgba(42, 18, 72, 0.76);
    line-height: 1.65;
}

body .ip-topics .col-lg-6 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body .ip-topic {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.2rem 1.25rem 1.25rem 1.2rem;
    background: #fff;
    border: 1.5px solid var(--ip-brand-purple);
    border-radius: var(--ip-radius);
    box-shadow:
        0 1px 2px rgba(120, 75, 210, 0.1),
        0 12px 32px rgba(5, 10, 20, 0.08);
    transition:
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.28s ease,
        box-shadow 0.28s ease;
}

body .ip-topic:hover {
    transform: translateY(-3px);
    border-color: #5a1cb8;
    box-shadow:
        0 4px 12px rgba(120, 75, 210, 0.16),
        0 18px 44px rgba(90, 55, 160, 0.12),
        0 0 0 1px rgba(120, 75, 210, 0.22);
}

body .ip-topic__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, #2a1a4e 0%, #1a0f32 100%);
    color: var(--brand-orange);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body .ip-topic h3 {
    font-size: 1.13rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
    color: var(--ip-brand-purple);
    line-height: 1.3;
}

body .ip-topic p {
    font-size: 0.94rem;
    color: var(--ip-navy);
    line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
    body .ip-topic {
        transition: none;
    }

    body .ip-topic:hover {
        transform: none;
    }
}

/* --- Audience (who should attend) — purplish band, 3-col icon pills --- */
body .ip-audience {
    position: relative;
    overflow: hidden;
    padding: clamp(3.25rem, 7vw, 4.75rem) 0;
    background:
        radial-gradient(ellipse 85% 50% at 10% 15%, rgba(120, 75, 210, 0.2), transparent 55%),
        radial-gradient(ellipse 70% 45% at 95% 85%, rgba(94, 234, 212, 0.1), transparent 52%),
        linear-gradient(168deg, #1a0f32 0%, #2a1a4e 48%, #352454 100%);
    color: var(--ip-fog);
}

body .ip-audience__head {
    text-align: center;
    margin: 0 auto clamp(1.75rem, 4vw, 2.35rem);
}

body .ip-audience__kicker {
    display: inline-flex;
    align-items: center;
    margin: 0 0 1rem;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ip-brand-lime);
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.12);
    border: 1px solid var(--ip-brand-lime);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

body .ip-audience__title {
    font-family: var(--ip-font-serif);
    font-size: clamp(1.85rem, 3.2vw, 2.45rem);
    font-weight: 700;
    color: var(--ip-white);
    margin: 0 0 0.85rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

body .ip-audience__title-accent {
    margin-top: 0.35rem;
    font-family: var(--ip-font-sans);
    font-size: clamp(1.35rem, 3.8vw, 2.8rem);
    font-weight: 700;
    color: var(--ip-brand-lime);
    letter-spacing: 0.01em;
    line-height: 1.15;
}

body .ip-audience__intro {
    margin: 0 auto;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.65;
    color: rgba(235, 228, 247, 0.9);
}

body .ip-audience__intro-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ip-accent);
}

body .ip-audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

@media (min-width: 576px) {
    body .ip-audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    body .ip-audience__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

body .ip-audience__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 3.75rem;
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    border: 1.5px solid var(--ip-brand-lime);
    background: #231541;
    /* box-shadow:
        0 0 0 1px rgba(94, 234, 212, 0.08) inset,
        0 8px 24px rgba(0, 0, 0, 0.28); */
    transition:
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

body .ip-audience__item:hover {
    border-color: #7ef03a;
    box-shadow:
        0 0 0 1px rgba(104, 218, 35, 0.2) inset,
        0 12px 32px rgba(49, 46, 129, 0.45),
        0 16px 40px rgba(0, 0, 0, 0.32);
    transform: translateY(-2px);
}

body .ip-audience__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 10px;
    background: rgba(15, 6, 29, 0.35);
    border: 1px solid rgba(104, 218, 35, 0.45);
    color: var(--ip-brand-lime);
    font-size: 1rem;
}

body .ip-audience__icon i {
    line-height: 1;
}

body .ip-audience__label {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ip-brand-lime);
}

@media (prefers-reduced-motion: reduce) {
    body .ip-audience__item {
        transition: none;
    }

    body .ip-audience__item:hover {
        transform: none;
    }
}

/* --- Speaker section sits on light band for contrast with patient-style cards --- */
body .speaker-section {
    background: #f8fafc;
}

/* --- Venue --- */
body .ip-venue {
    padding: 4rem 0;
    /*background: linear-gradient(135deg, #e8e0f4 0%, #f8fafc 50%, #e6fce8 100%);*/
    color: #fff;
    background: radial-gradient(ellipse 90% 55% at 15% 20%, rgba(120, 75, 210, 0.22), transparent 50%),
        radial-gradient(ellipse 70% 50% at 100% 80%, rgba(94, 234, 212, 0.08), transparent 52%),
        linear-gradient(168deg, #0f061d 0%, #2a1a4e 42%, #1a0f32 100%);
}

body .ip-venue h2 {
    font-size: 2.5rem;
    /*color: #0f172a;*/
    color: #68da23;
    margin-bottom: 0.75rem;
}

body .ip-venue h3,
body .ip-venue h4 {
    font-weight: 600;
}

body .ip-venue h3 {
    font-size: 1.2rem;
    line-height: 1.45;
    /*color: #334155;*/
    margin-bottom: 1.2rem;
    color: #fff;
}
body .testimonial h4{
    font-family: var(--ip-font-serif);
}

body .ip-venue h4 {
    font-family: var(--ip-font-serif);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

body .ip-venue .ip-venue-visual {
    border-radius: var(--ip-radius-lg);
    min-height: 280px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.25), rgba(120, 75, 210, 0.2)),
        url("../images/venue/barcelona-bg.webp") center / cover;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

/* --- Contact --- */

@keyframes ip-contact-card-accent-shift {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

body .ip-contact {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 5.25rem) 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -8%, rgba(248, 250, 252, 0.22), transparent 58%),
        radial-gradient(ellipse 75% 50% at 12% 30%, rgba(120, 75, 210, 0.2), transparent 55%),
        radial-gradient(ellipse 65% 45% at 92% 70%, rgba(94, 234, 212, 0.14), transparent 52%),
        linear-gradient(168deg, #352454 0%, #2a1a4e 40%, #1a0f32 100%);
    color: var(--ip-fog);
}

body .ip-contact__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

body .ip-contact__glow--1 {
    width: min(42vw, 380px);
    height: min(42vw, 380px);
    top: -15%;
    right: -5%;
    background: radial-gradient(circle at 40% 40%, rgba(235, 228, 247, 0.35), transparent 68%);
}

body .ip-contact__glow--2 {
    width: min(48vw, 420px);
    height: min(48vw, 420px);
    bottom: -25%;
    left: -12%;
    background: radial-gradient(circle at 50% 50%, rgba(94, 234, 212, 0.28), transparent 70%);
}

body .ip-contact .container {
    position: relative;
    z-index: 1;
}

body .ip-contact__kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ip-brand-lime);
    margin-bottom: 1rem;
    padding: 0.38rem 0.95rem;
    border-radius: 999px;
    background: rgba(94, 234, 212, 0.1);
    border: 1px solid var(--ip-brand-lime);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

body .ip-contact__title {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    color: var(--ip-white);
    margin: 0 0 1rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

body .ip-contact__lead {
    font-size: clamp(1.02rem, 1.85vw, 1.12rem);
    line-height: 1.65;
    color: rgba(235, 228, 247, 0.88);
    margin: 0;
    max-width: 34rem;
}

body .ip-contact-card {
    position: relative;
    max-width: none;
    margin: 0;
    padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.35rem, 3.5vw, 2rem);
    border-radius: var(--ip-radius-lg);
    border: 1px solid rgba(94, 234, 212, 0.45);
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 255, 0.96) 55%, rgba(235, 228, 247, 0.94) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.65) inset,
        0 4px 24px rgba(94, 234, 212, 0.12),
        0 24px 56px rgba(15, 6, 29, 0.28);
}

body .ip-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 5px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent 0%, rgb(94 234 149 / 35%) 18%, #7fea5e 38%, var(--ip-brand-lime) 50%, #eaaa5e 62%, rgba(94, 234, 212, 0.35) 82%, transparent 100%);
    background-size: 220% 100%;
    background-position: 0% 50%;
    opacity: 0.95;
    pointer-events: none;
    animation: ip-contact-card-accent-shift 3.5s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    body .ip-contact-card::before {
        animation: none;
        background-size: 100% 100%;
        background-position: 50% 50%;
    }
}

body .ip-contact-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 55%;
    height: 45%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body .ip-contact-form {
    position: relative;
    z-index: 1;
}

body .ip-contact-card__eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ip-brand-lime);
    margin: 0 0 0.35rem;
}

body .ip-contact-card__hint {
    font-size: 0.88rem;
    line-height: 1.5;
    color: #4a3f5c;
    margin: 0 0 1.5rem;
    max-width: 36rem;
}

body .ip-contact-form input,
body .ip-contact-form select,
body .ip-contact-form textarea {
    width: 100%;
    margin-bottom: 0;
    padding: 0.88rem 1.05rem;
    border-radius: var(--ip-radius);
    border: 1px solid rgba(66, 48, 122, 0.16);
    background: #ffffff;
    color: #1e1630;
    font-family: var(--ip-font-sans);
    font-size: 0.98rem;
    box-shadow: 0 1px 2px rgba(30, 22, 48, 0.04);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

body .ip-contact-form input::placeholder,
body .ip-contact-form textarea::placeholder {
    color: #7c6f92;
}

body .ip-contact-form select {
    cursor: pointer;
    appearance: none;
    color: #1e1630;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%2342307a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

body .ip-contact-form select:invalid {
    color: #7c6f92;
}

body .ip-contact-form select option {
    color: #0f172a;
    background: #f8fafc;
}

body .ip-contact-form input:hover,
body .ip-contact-form select:hover,
body .ip-contact-form textarea:hover {
    border-color: rgba(94, 234, 212, 0.55);
    background: #fefefe;
}

body .ip-contact-form input:focus-visible,
body .ip-contact-form select:focus-visible,
body .ip-contact-form textarea:focus-visible {
    outline: none;
    border-color: var(--ip-accent);
    box-shadow:
        0 0 0 3px rgba(94, 234, 212, 0.28),
        0 1px 2px rgba(30, 22, 48, 0.06);
    background: #ffffff;
}

body .ip-contact-form .error {
    margin-top: 0.35rem;
}

body .ip-contact-form__actions {
    display: flex;
    justify-content: flex-start;
    margin-top: 0.25rem;
}

body .ip-contact-form__submit {
    padding-inline: 1.75rem;
    min-height: 3rem;
}

@media (min-width: 576px) {
    body .ip-contact-form__actions {
        justify-content: flex-end;
    }
}

body .ip-contact-form .ip-btn {
    margin-top: 0;
}

body .error {
    color: red !important;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
body .ip-footer {
    background: #080212;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--ip-muted);
    font-size: 0.9rem;
}

body .ip-footer h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--ip-gold);
    margin-bottom: 1rem;
}

body .ip-footer a {
    color: var(--ip-fog);
    font-size: 22px;
    line-height: 34px;
    display: inline-block;
    color: #fff;
    transition: all 0.5s cubic-bezier(.645, .045, .355, 1);
}

body .ip-footer a:hover {
    color: var(--ip-gold);
    transition: text-decoration 0.5s cubic-bezier(.645, .045, .355, 1);
}

body .ip-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

body .ip-footer li {
    margin-bottom: 0.45rem;
    font-size: 22px;
    color: #fff;
}

body .ip-footer .our-moto {
    color: #fff;
    font-style: italic;
    margin: 0.75rem 0;
    font-size: 22px;
    font-weight: 700;
}

.footer-widget-social {
    gap: 10px;
    margin: 18px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: none;
    padding-top: 0;
    text-align: center;
    width: 73%;
}

body .ip-footer .footer-widget-social a {
    display: inline-block;
    margin-right: 0.5rem;
    /**/
    height: auto;
    width: 43px;
    line-height: 46px;
    border-radius: 50%;
    font-size: 22px;
    color: var(--brand-teal);
    transition: all 1s ease-out;
}

.ip-footer p.small {
    font-size: 20px;
    color: #fff;
}

body .ip-footer .footer-widget-social a:hover {
    transform: scale(1.3);
}

@media (max-width: 991px) {
    body .ip-hero {
        min-height: unset;
        padding-top: 7rem;
    }
    body .ip-audience__sticky {
        margin-bottom: 2rem;
    }
}

/* Testimonials */
.testimonial {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
    overflow: hidden;
    padding: 3rem 0px 4rem;
}
.testimonial .sub-heading {
    font-size: 1.2rem;
    line-height: 1.45;
}

.testimonial p.h2 {
    font-size: 125px;
    font-weight: 700;
    color: #493fb9;
    -webkit-text-fill-color: #493fb9;
    line-height: 1
}

.testimonial-heading {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px
}
.testimonialSlider {
    width: 100%;
    padding: 50px 0;
    position: relative;
}
.testimonial .testimonialSlide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f5f5f5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        z-index 0.3s ease;
    height: 300px;
    box-sizing: border-box;
}
.testimonial .swiper-slide-active {
    /*background: #00a79d;*/
    background: #493FB9;
    transform: scale(1);
    z-index: 10;
    filter: blur(0);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.testimonial .swiper-slide-active h4{
    color: #68da23;
    font-weight: 700;
}
.testimonial .swiper-slide-active p{
    color: #fff;
}
.testimonial .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.9);
    z-index: 1;
    filter: blur(3px);
    transition:
        transform 0.3s ease,
        z-index 0.3s ease,
        filter 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

/* Sponsors */
.sponsor {
    padding: 2rem 0;
    /*border-radius: 0 0 40px 40px;*/
}
.sponsor h2 {
    color: #42307a;
}
.supporter {
    padding: 10px 8px;
}
.supporter {
    padding: 10px;
    margin: 0;
    background: #fff0;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid rgb(0 0 0 / .3);
    box-shadow: rgb(2 10 68 / .073) 0 -50px 36px -28px inset;
}
.supporter-logo {
    cursor: pointer;
    padding: 20px;
    /* background: #fff; */
    border-radius: 16px;
    /* box-shadow: 0 0 30px rgb(0 0 0 / .05); */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 120px;
}
.supporter img {
    transition: all 0.4s ease-in-out;
    max-width: 100%;
    height: auto;
}
.media-partners .supporter-logo img {
    cursor: pointer;
}

/* =============================================================================
   Speakers · Conference agenda · Tickets / attendee pass
   ============================================================================= */

.speaker-section,
#agenda,
.attendee-pass,
#tickets .card-title,
.spk-name {
    font-family: var(--ip-font-sans);
}

.speaker-headings h2,
.agenda-header h2,
.section-title,
.benefits-title {
    font-family: var(--ip-font-serif);
}

.section h2 {
    font-size: 40px;
    font-weight: 600;
}

.speaker-headings {
    color: var(--ip-brand-purple);
}

.speakers {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.speakers .img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all 1s ease-out;
}

.speakers .speaker-img img {
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.speakers .speaker-social {
    position: absolute;
    z-index: 9;
    top: 91%;
    left: 43%;
    background: linear-gradient(135deg, var(--primary-blue), var(--brand-teal));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all 1s ease-out;
    padding-top: 5px;
}

.speakers .speaker-social a {
    color: #fff;
    font-size: 25px;
}

.speaker-info {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    color: #000;
}

.speaker-info h4 {
    color: #000;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0;
}

.speaker-info h5 {
    color: #000;
}

.speakers:hover .speaker-social {
    opacity: 1;
    animation: icons 1.5s linear infinite;
}

@keyframes icons {
    100% {
        transform: scale(1);
    }
    0% {
        transform: scale(1.1);
    }
}

.speakers .speaker-title {
    color: #000;
    margin-bottom: 0;
    font-size: 18px;
}

.speakers .speaker-company {
    color: var(--brand-teal);
    margin-bottom: 0;
    font-size: 20px;
}

.speakers-modal .modal-body p {
    text-align: justify;
}

@media (max-width: 1199px) {
    .speakers .speaker-title {
        font-size: 15px;
    }
    .speakers .speaker-company {
        font-size: 18px;
    }
}

.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-hover:hover {
    transform: translateY(-6px);
    box-shadow: rgba(90, 55, 160, 0.16) 0px 18px 35px;
}

#agenda {
    padding: 60px 0;
    background-color: #f6f7fd;
}

.agenda-header h2 {
    font-size: 2.5rem;
    text-align: center;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--ip-brand-purple);
}

#agenda .agenda-card {
    box-shadow: rgba(90, 55, 160, 0.08) 0px 12px 24px;
    border-left: 7px solid var(--ip-brand-lime);
    background: rgb(255, 255, 255);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

#agenda .agenda-time {
    font-size: 22px;
}

#agenda .agenda-title {
    color: #000;
    font-size: 25px;
    margin: 10px 0 0;
    line-height: 1.4;
}

#agenda .agenda-des {
    font-size: 17px;
}

.speaker-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.speaker-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(94, 234, 212, 0.35);
    box-shadow: 0 8px 16px rgba(90, 55, 160, 0.12);
    flex-shrink: 0;
}

.spk-name {
    font-size: 20px;
}

.spk-detail {
    font-size: 17px;
}

.spk-title {
    font-size: 22px;
}

.pill {
    border: 1px solid rgba(90, 55, 160, 0.2);
    border-radius: 999px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.agenda-card .pill {
    border: none;
    color: #fff;
    box-shadow: 0 10px 18px rgba(90, 55, 160, 0.15);
}

.agenda-card .pill i {
    color: #fff;
}

.agenda-card .pill-session {
    background: var(--highlight-red);
}

.agenda-card .pill-time {
    background: #fb923c;
}

.text-teal {
    color: var(--brand-orange);
}

.agenda-bg {
    background: rgba(94, 234, 212, 0.1) !important;
}

.agenda-card .pill-session.animates {
    animation: blinkers 1s infinite;
}

@keyframes blinkers {
    0% {
        background: var(--brand-orange);
    }
    30% {
        background: var(--primary-blue);
    }
    100% {
        background: var(--brand-orange);
    }
}

.attendee-pass {
    padding: 50px 0;
}

.section-title {
    color: var(--ip-brand-purple);
    font-size: 2.5rem;
}

.combo-line {
    font-size: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #000;
    justify-content: center;
    font-weight: 600;
}

.combo-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 16px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.2s ease;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
}

.combo-purple {
    animation-delay: 0.2s;
    /*background: rgba(94, 234, 212, 0.13);*/
    background: #42307a;
    color: var(--ip-brand-lime);
}

.combo-teal {
    animation-delay: 0.5s;
    /*background: rgba(94, 234, 212, 0.12);*/
    background: #68da23;
    color: var(--brand-teal);
}

.combo-pill::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    animation: sweep 2.8s ease-in-out infinite;
}

.combo-teal::after {
    animation-delay: 1.4s;
}

@keyframes sweep {
    0% {
        left: -55%;
    }
    65%,
    100% {
        left: 130%;
    }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.pricing-card {
    background: linear-gradient(
        135deg,
        #1a0a38 0%,
        #2d1268 26%,
        #4a22a8 52%,
        #5c3ad4 76%,
        #8f7aed 100%
    );
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(42, 18, 98, 0.48);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 64px rgba(72, 40, 168, 0.45);
}

.pricing-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pricingPulse 8s ease-in-out infinite;
}

@keyframes pricingPulse {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-orange);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 18px rgba(52, 28, 120, 0.5);
}

#tickets .pricing-card .card-header {
    position: relative;
    z-index: 1;
    margin-top: 35px;
    background: transparent;
    border: none;
    padding: 0;
}

#tickets .card-title {
    /*font-size: 1.7rem;*/
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.card-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 4px 10px rgba(255, 255, 255, 0.3);
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.discount-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.discount-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.discount-item i {
    color: #fff;
    margin-right: 12px;
    font-size: 1.2rem;
}

.buy-button {
    background: #68da23;
    color: #4f46e5;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 8px 22px rgba(52, 140, 18, 0.45);
    position: relative;
    z-index: 1;
}

.buy-button:hover {
    background: #52b818;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(45, 120, 20, 0.55);
    color: #4338ca;
}

.buy-button i {
    margin-left: 10px;
    color: inherit;
}

body a.buy-button,
body a.buy-button:visited {
    color: #4f46e5;
}

body a.buy-button:hover,
body a.buy-button:focus-visible {
    color: #4338ca;
}

#tickets .buy-button {
    padding: 16px;
}

.pricing {
    font-size: 20px;
    margin-top: 20px;
}

.ticket-animate {
    position: relative;
    animation: borderPulse infinite ease-in-out;
    margin-top: 15px;
}

.ticket-wrap:nth-child(1) .ticket-animate {
    animation-duration: 2.5s;
}

.ticket-wrap:nth-child(2) .ticket-animate {
    animation-duration: 3s;
}

.ticket-wrap:nth-child(3) .ticket-animate {
    animation-duration: 3.5s;
}

@keyframes borderPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(104, 218, 35, 0.95);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 12px rgba(104, 218, 35, 0.45);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(104, 218, 35, 0);
    }
}

.benefits-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-teal);
    margin-bottom: 15px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
    background: linear-gradient(135deg, rgba(90, 55, 160, 0.06) 0%, rgba(94, 234, 212, 0.14) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(90, 55, 160, 0.2);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--brand-teal) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.benefit-content p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.attendee-pass a.buy-button {
    text-decoration: none !important;
}
