/* ═══════════════════════════════════════════════
   VARIABLES
═══════════════════════════════════════════════ */
:root {
    --primary:   #5B21B6;
    --primary-l: #8B5CF6;
    --primary-d: #3B0764;
    --gold:      #C9A84C;
    --gold-l:    #F0D080;
    --navy:      #0B1829;
    --dark:      #0d0a1e;
    --text:      #1E293B;
    --muted:     #64748B;
    --white:     #ffffff;
    --off:       #fafafa;
    --alt:       #F8F9FC;
    --border:    #E2E8F0;
    --card-sh:   0 2px 16px rgba(11,24,41,.05);
    --card-sh-h: 0 20px 56px rgba(91,33,182,.12);
    --radius:    16px;
    --radius-lg: 24px;
    --transition: .4s cubic-bezier(.23,1,.32,1);
}

/* ═══════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════ */
html { font-size: 15.5px; overflow-x: hidden; scroll-behavior: auto; }
@media (min-width: 768px) { html { font-size: 17.5px; } }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(111deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,1) 12%,
        rgba(255,255,255,1) 34%,
        rgba(245,255,255,1) 50%,
        rgba(255,255,255,1) 93%);
    background-attachment: fixed;
    color: var(--text);
    /*overflow-x: hidden;*/
}
img { display: block; max-width: 100%; }
a, button { cursor: pointer; }


/* ═══════════════════════════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════════════════════════ */
#scroll-bar {
    position: fixed; top: 0; left: 0; z-index: 9997;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width .1s linear;
    /*pointer-events: none;*/
}

/* ═══════════════════════════════════════════════
   PAGE LOADER
═══════════════════════════════════════════════ */
#page-loader {
    position: fixed; inset: 0; z-index: 9000;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 20px;
    transition: opacity .8s ease, visibility .8s ease;
}
#page-loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 700; color: var(--white);
    letter-spacing: 2px; line-height: 1;
}
.loader-logo span { color: var(--gold); font-style: italic; }
.loader-bar-wrap {
    width: 180px; height: 2px;
    background: rgba(255,255,255,.12); border-radius: 2px; overflow: hidden;
}
.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-l), var(--gold));
    border-radius: 2px; width: 0;
    animation: loaderFill 1.4s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    padding: 20px 56px;
    display: flex; align-items: center; justify-content: space-between;
    transition: all .45s cubic-bezier(.23,1,.32,1);
}
.site-nav.nav-solid {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 14px 56px;
    border-bottom: 1px solid rgba(91,33,182,.07);
    box-shadow: 0 2px 32px rgba(11,24,41,.06);
}
    .site-nav.nav-transparent {
        border-color: white;
        background: transparent;
        box-shadow: none;
        border-bottom: none;
    }

/* Logo */
.nav-brand {
    text-decoration: none;
    display: flex; align-items: center; gap: 12px;
    transition: opacity .3s;
}
.nav-brand:hover { opacity: .88; }
.nav-brand-icon {
    width: 88px; height: 88px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
    transition: box-shadow .3s;
}
.nav-solid .nav-brand-icon {
    box-shadow: 0 2px 12px rgba(91,33,182,.18);
}
.nav-brand-icon img {
    width: 86px; height: 86px; object-fit: contain; display: block;
}
.nav-brand-text-wrap {
    display: flex; flex-direction: column; gap: 2px;
}
.nav-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem; font-weight: 700; letter-spacing: 0.8px; line-height: 1;
    display: block;
}
.nav-brand-text em,
.nav-brand-text .ict-accent { font-style: normal; color: #7B8FA1; }

/* ict-accent — global gray style for any branded "ICT" label */
.ict-accent { color: #7B8FA1; font-style: normal; }
.mob-logo-name .ict-accent { color: #8899AA; }
.nav-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 2.5px;
    text-transform: uppercase; line-height: 1; display: block;
}
.nav-solid .nav-brand-text       { color: var(--dark); }
.nav-transparent .nav-brand-text { color: var(--white); }
.nav-solid .nav-brand-sub        { color: var(--muted); }
.nav-transparent .nav-brand-sub  { color: rgba(255,255,255,.6); }

/* Links */
.nav-list { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-item a {
    display: inline-block; padding: 9px 16px;
    font-size: .92rem; font-weight: 500; letter-spacing: .15px;
    text-decoration: none; border-radius: 8px;
    transition: all .3s;
}

/* Separator before CTA group */
.nav-cta-register {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1.5px solid rgba(0,0,0,.1);
}
.nav-transparent .nav-cta-register {
    border-left-color: rgba(255,255,255,.2);
}
/* RTL separator direction */
[dir="rtl"] .nav-cta-register {
    margin-left: 0; padding-left: 0;
    border-left: none;
    margin-right: 10px; padding-right: 10px;
    border-right: 1.5px solid rgba(0,0,0,.1);
}
[dir="rtl"] .nav-transparent .nav-cta-register {
    border-right-color: rgba(255,255,255,.2);
}
.nav-solid       .nav-item a { color: var(--text); }
.nav-solid       .nav-item a:hover  { color: var(--primary); background: rgba(91,33,182,.06); }
.nav-solid       .nav-item a.active { color: var(--primary); background: rgba(91,33,182,.07); }
.nav-transparent .nav-item a { color: rgba(255,255,255,.8); }
.nav-transparent .nav-item a:hover  { color: var(--white); background: rgba(255,255,255,.1); }
.nav-transparent .nav-item a.active { color: var(--white); background: rgba(255,255,255,.12); }

/* CTA button */
.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-d)) !important;
    color: var(--white) !important;
    padding: 10px 22px !important; border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 18px rgba(91,33,182,.3);
    transition: all .35s cubic-bezier(.23,1,.32,1) !important;
}
.nav-cta:hover { transform: translateY(-2px) scale(1.03) !important; box-shadow: 0 10px 30px rgba(91,33,182,.5) !important; background: rgba(255,255,255,0) !important; }
.nav-transparent .nav-cta {
    background: rgba(255,255,255,.14) !important;
    backdrop-filter: blur(10px);
    box-shadow: none !important;
    border: 1px solid rgba(255,255,255,.3) !important;
}
.nav-transparent .nav-cta:hover { background: rgba(255,255,255,.25) !important; }

/* Register & Submit Paper nav buttons */
.nav-cta-register .nav-register-link,
.nav-cta-submit   .nav-submit-link {
    font-weight: 600 !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
}
.nav-cta-register .nav-register-link {
    border: 1.5px solid rgba(91,33,182,.35) !important;
    color: var(--primary) !important;
}
.nav-cta-register .nav-register-link:hover,
.nav-cta-register .nav-register-link.active {
    background: rgba(91,33,182,.08) !important;
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}
.nav-cta-submit .nav-submit-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-d)) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(91,33,182,.3);
}
.nav-cta-submit .nav-submit-link:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 24px rgba(91,33,182,.45) !important;
}
/* On transparent nav (hero pages) */
.nav-transparent .nav-cta-register .nav-register-link {
    border-color: rgba(255,255,255,.4) !important;
    color: rgba(255,255,255,.9) !important;
}
.nav-transparent .nav-cta-register .nav-register-link:hover {
    background: rgba(255,255,255,.12) !important;
    color: #fff !important;
}
.nav-transparent .nav-cta-submit .nav-submit-link {
    background: rgba(255,255,255,.15) !important;
    backdrop-filter: blur(10px);
    box-shadow: none !important;
    border: 1.5px solid rgba(255,255,255,.3) !important;
}
.nav-transparent .nav-cta-submit .nav-submit-link:hover {
    background: rgba(255,255,255,.28) !important;
}

/* Mobile burger */
.nav-burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px;
}
.nav-burger span { display: block; width: 22px; height: 2px; border-radius: 2px; transition: all .3s; }
.nav-solid       .nav-burger span { background: var(--text); }
.nav-transparent .nav-burger span { background: var(--white); }

/* ═══════════════════════════════════════════════
   SHARED SECTION HELPERS
═══════════════════════════════════════════════ */
.s-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .72rem; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase;
    color: var(--primary); padding: 7px 16px;
    background: rgba(91,33,182,.07); border-radius: 50px; margin-bottom: 16px;
}
.s-tag::before {
    content: ''; display: block;
    width: 16px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.s-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.2vw, 3.6rem);
    font-weight: 900; line-height: 1.1; letter-spacing: -1.5px;
    color: var(--dark);
}
.s-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.s-title.on-dark { color: var(--white); }
.s-hdr { text-align: center; margin-bottom: 56px; }
.s-hdr.left { text-align: left; }
.s-hdr-sub {
    font-size: 1.1rem; color: var(--muted); line-height: 1.85;
    max-width: 640px; margin: 16px auto 0;
}

/* ═══════════════════════════════════════════════
   SHARED BUTTONS
═══════════════════════════════════════════════ */
.btn-v {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 34px; border-radius: 50px;
    font-size: 1rem; font-weight: 700; text-decoration: none; border: none;
    transition: all var(--transition); letter-spacing: .2px; cursor: pointer;
}
.btn-fill {
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: var(--white) !important;
    box-shadow: 0 6px 28px rgba(91,33,182,.35);
}
.btn-fill:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 40px rgba(91,33,182,.55); }
.btn-gold {
    background: linear-gradient(135deg, var(--gold), #B8953A);
    color: var(--dark) !important;
    box-shadow: 0 6px 24px rgba(201,168,76,.35);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(201,168,76,.5); }
.btn-outline {
    background: transparent; color: var(--primary) !important;
    border: 1.5px solid rgba(91,33,182,.25);
}
.btn-outline:hover { background: rgba(91,33,182,.05); border-color: var(--primary); transform: translateY(-2px); }
.btn-white {
    background: transparent; color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,.3);
    backdrop-filter: blur(10px);
}
.btn-white:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.1); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════
   DIVIDER WAVE HELPER
═══════════════════════════════════════════════ */
.dv { display: block; overflow: hidden; line-height: 0; }

/* ═══════════════════════════════════════════════
   SHARED CONFERENCE CARD
═══════════════════════════════════════════════ */
.c-card {
    border-radius: var(--radius-lg); overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--card-sh);
    transition: all var(--transition);
    position: relative;
}
.c-card:hover { transform: translateY(-8px); box-shadow: var(--card-sh-h); }
.c-img {
    height: 200px; overflow: hidden; position: relative; background: var(--alt);
}
.c-img img { width:100%; height:100%; object-fit:cover; transition: transform .65s cubic-bezier(.23,1,.32,1); }
.c-card:hover .c-img img { transform: scale(1.08); }
.c-img::after {
    content:''; position:absolute; inset:0;
    background: linear-gradient(to top, rgba(13,10,30,.15) 0%, transparent 60%);
}
.c-cat {
    position: absolute; top:14px; left:14px; z-index:2;
    background: var(--primary); color:var(--white);
    font-size:.67rem; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
    padding:5px 13px; border-radius:50px;
}
.c-body { padding: 24px; }
.c-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight:700; color:var(--dark);
    margin-bottom:12px; line-height:1.3;
}
.c-meta { display:flex; flex-direction:column; gap:8px; margin-bottom:16px; }
.c-meta-row { display:flex; align-items:center; gap:8px; font-size:.79rem; color:var(--muted); }
.c-foot {
    display:flex; align-items:center; justify-content:space-between;
    padding-top:14px; border-top:1px solid var(--border);
}
.c-ppl { display:flex; align-items:center; gap:6px; font-size:.78rem; color:var(--primary); font-weight:600; }
.c-reg {
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color:var(--white); border:none;
    padding:8px 18px; border-radius:50px;
    font-size:.76rem; font-weight:700; transition:all .3s; cursor:pointer;
}
.c-reg:hover { box-shadow:0 6px 22px rgba(91,33,182,.5); transform:scale(1.06); }

/* ═══════════════════════════════════════════════
   FORM STYLES (shared across Register & SendPaper)
═══════════════════════════════════════════════ */
.form-section {
    background: var(--white);
    padding: clamp(3rem,8vw,6rem) clamp(1.5rem,5vw,4rem);
}
.form-shell {
    max-width: 720px; margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: clamp(2rem,5vw,3.5rem);
    box-shadow: 0 8px 48px rgba(11,24,41,.08);
    position: relative; overflow: hidden;
}
.form-shell::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary-l));
}
.form-grid { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: .825rem; font-weight: 600; color: var(--text);
    letter-spacing: .01em;
}
.form-label .req { color: var(--gold); }

.form-input, .form-select, .form-textarea {
    width: 100%; padding: .875rem 1.125rem;
    background: var(--alt);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--text);
    transition: all .3s; outline: none;
    appearance: none; -webkit-appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #94A3B8; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(91,33,182,.08);
}
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-textarea { resize: vertical; min-height: 130px; }

/* File upload zone */
.file-zone {
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center; cursor: pointer;
    transition: all .3s; background: var(--alt);
    position: relative;
}
.file-zone.drag-over,
.file-zone:hover { border-color: var(--primary); background: rgba(91,33,182,.03); }
.file-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.file-zone-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(91,33,182,.1), rgba(201,168,76,.1));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1rem; font-size: 1.5rem;
}
.file-zone-title { font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: .35rem; }
.file-zone-sub   { font-size: .82rem; color: var(--muted); }
.file-zone-sub span { color: var(--primary); font-weight: 600; }

/* Form steps */
.form-steps {
    display: flex; align-items: center; margin-bottom: 2.5rem;
}
.form-step {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    position: relative;
}
.form-step:not(:last-child)::after {
    content: ''; position: absolute; top: 19px; left: 50%; width: 100%;
    height: 2px; background: var(--border);
}
.form-step.done:not(:last-child)::after,
.form-step.active:not(:last-child)::after { background: var(--primary); }
.step-circle {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 700; color: var(--muted);
    position: relative; z-index: 1; background: var(--white);
    transition: all .35s;
}
.form-step.active .step-circle,
.form-step.done .step-circle {
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    border-color: transparent; color: white;
    box-shadow: 0 4px 14px rgba(91,33,182,.3);
}
.step-label { font-size: .7rem; font-weight: 600; color: var(--muted); margin-top: .4rem; text-align: center; }
.form-step.active .step-label { color: var(--primary); }

.btn-submit {
    width: 100%; padding: 1rem 2rem; border: none;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: white; border-radius: 50px;
    font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700;
    cursor: pointer; transition: all .35s; margin-top: .5rem;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(91,33,182,.45); }
.btn-submit:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.site-footer {
    background: var(--navy);
    padding: 64px 56px 32px;
    border-top: 1px solid rgba(255,255,255,.03);
}
.ft-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem; margin-bottom: 3rem;
}
.ft-brand .ft-logo {
    font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900;
    color: var(--white); margin-bottom: 12px; letter-spacing: -0.5px;
}
.ft-brand .ft-logo span { color: var(--gold); font-style: italic; }
.ft-brand p { font-size: .84rem; color: rgba(255,255,255,.38); max-width: 240px; line-height: 1.75; }
.ft-col h4 {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2.5px; color: rgba(255,255,255,.28); margin-bottom: 20px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col a { font-size: .85rem; color: rgba(255,255,255,.38); text-decoration: none; transition: color .3s; }
.ft-col a:hover { color: var(--gold); }
.ft-bot {
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,.05);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.ft-bot p { font-size: .8rem; color: rgba(255,255,255,.2); }
.ft-socials { display: flex; gap: 10px; }
.ft-soc {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.3); text-decoration: none; transition: all .3s;
}
.ft-soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }

/* ═══════════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .ft-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 1024px) {
    .site-nav, .site-nav.nav-solid { padding-left: 32px; padding-right: 32px; }
    .nav-list { gap: 2px; }
    .nav-item a { padding: 7px 10px; font-size: .82rem; }
}
@media (max-width: 768px) {
    .site-nav, .site-nav.nav-solid { padding-left: 20px; padding-right: 20px; }
    .nav-list { display: none; }
    .nav-burger { display: flex; }
    .site-footer { padding: 48px 24px 24px; }
    .ft-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .ft-top { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   NAV DROPDOWN
═══════════════════════════════════════════════ */
.nav-item.has-drop { position: relative; }
.nav-drop {
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    background: var(--white);
    border: 1px solid rgba(91,33,182,.1);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(11,24,41,.12);
    padding: 8px;
    opacity: 0; visibility: hidden;
    transition: all .3s cubic-bezier(.23,1,.32,1);
    z-index: 900;
}
.nav-item.has-drop:hover .nav-drop {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-drop a {
    display: block; padding: 9px 14px;
    font-size: .84rem; color: var(--text) !important; text-decoration: none;
    border-radius: 8px; transition: all .25s; background: none !important;
    font-weight: 500;
}
.nav-drop a:hover { background: rgba(91,33,182,.06) !important; color: var(--primary) !important; }

/* ═══════════════════════════════════════════════
   KEYNOTE SPEAKERS PAGE
═══════════════════════════════════════════════ */
.spk-sec {
    background: transparent;
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}
.spk-inner { max-width: 1200px; margin: 0 auto; }

.spk-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
}

.spk-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-sh);
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
    position: relative;
}
.spk-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0; transition: opacity .35s;
}
.spk-card:hover { transform: translateY(-10px); box-shadow: var(--card-sh-h); }
.spk-card:hover::before { opacity: 1; }

.spk-card-body { padding: 32px 28px 24px; text-align: center; }

.spk-avatar-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.spk-avatar {
    width: 96px; height: 96px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900; color: var(--white);
    box-shadow: 0 8px 28px rgba(91,33,182,.3);
    position: relative;
}
.spk-avatar img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    position: absolute; inset: 0;
}
.spk-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: var(--dark);
    margin-bottom: 6px; line-height: 1.3;
}
.spk-pos {
    font-size: .8rem; color: var(--primary); font-weight: 600;
    margin-bottom: 4px;
}
.spk-affil {
    font-size: .78rem; color: var(--muted);
    display: flex; align-items: center; gap: 5px;
    justify-content: center; margin-bottom: 16px;
}
.spk-theme-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 5px 14px; border-radius: 50px;
    background: rgba(91,33,182,.07); color: var(--primary);
    margin-bottom: 20px;
}
.spk-card-foot {
    padding: 16px 28px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: center;
}
.spk-view-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: .82rem; font-weight: 700; color: var(--primary);
    text-decoration: none; transition: gap .3s;
}
.spk-view-btn:hover { gap: 12px; color: var(--primary-d); }

/* Speaker Modal */
.spk-modal {
    position: fixed; inset: 0; z-index: 8000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    pointer-events: none;
}
.spk-modal.open { pointer-events: all; }
.spk-modal-overlay {
    position: absolute; inset: 0;
    background: rgba(11,24,41,.6); backdrop-filter: blur(12px);
    opacity: 0; transition: opacity .4s;
}
.spk-modal.open .spk-modal-overlay { opacity: 1; }

.spk-modal-panel {
    position: relative; z-index: 1;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 640px; width: 100%;
    max-height: 88vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(11,24,41,.2);
    transform: scale(.92) translateY(20px); opacity: 0;
    transition: all .45s cubic-bezier(.34,1.56,.64,1);
}
.spk-modal.open .spk-modal-panel { transform: scale(1) translateY(0); opacity: 1; }

.spk-modal-close {
    position: absolute; top: 20px; right: 20px;
    background: var(--alt); border: 1px solid var(--border); border-radius: 50%;
    width: 36px; height: 36px; font-size: .9rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all .3s; color: var(--muted);
}
.spk-modal-close:hover { background: var(--primary); color: white; border-color: var(--primary); }

.spk-modal-header {
    display: flex; align-items: center; gap: 24px; margin-bottom: 28px;
}
.spk-modal-avatar {
    width: 80px; height: 80px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; font-weight: 900; color: var(--white);
    box-shadow: 0 6px 20px rgba(91,33,182,.25);
}
.spk-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; font-weight: 700; color: var(--dark);
    margin-bottom: 4px;
}
.spk-modal-title { font-size: .85rem; color: var(--primary); font-weight: 600; margin-bottom: 3px; }
.spk-modal-affil { font-size: .8rem; color: var(--muted); }
.spk-modal-divider {
    height: 1px; background: var(--border); margin: 24px 0;
}
.spk-modal-bio {
    font-size: .92rem; color: var(--muted); line-height: 1.85;
    margin-bottom: 24px;
}
.spk-modal-talk {
    background: linear-gradient(135deg, rgba(91,33,182,.05), rgba(201,168,76,.05));
    border: 1px solid rgba(91,33,182,.1);
    border-radius: 14px; padding: 20px 24px;
    border-left: 4px solid var(--primary);
}
.spk-modal-talk-label {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold); margin-bottom: 8px;
}
.spk-modal-talk-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--dark); line-height: 1.45;
    font-style: italic;
}

/* ═══════════════════════════════════════════════
   CALL FOR PAPERS PAGE
═══════════════════════════════════════════════ */
.cfp-sec {
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
    background: transparent;
}
.cfp-inner { max-width: 1100px; margin: 0 auto; }

.cfp-dates-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
    margin-bottom: 64px;
}
.cfp-date-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px 20px;
    text-align: center; box-shadow: var(--card-sh);
    transition: all var(--transition); position: relative; overflow: hidden;
}
.cfp-date-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}
.cfp-date-card:hover { transform: translateY(-6px); box-shadow: var(--card-sh-h); }
.cfp-date-icon {
    width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(91,33,182,.1), rgba(201,168,76,.08));
    display: flex; align-items: center; justify-content: center;
}
.cfp-date-label {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--muted); margin-bottom: 10px;
}
.cfp-date-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--dark); line-height: 1.3;
}
.cfp-date-val.highlight { color: var(--primary); }

.cfp-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 64px;
}
.cfp-box {
    background: var(--alt); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px;
}
.cfp-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--dark);
    margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.cfp-box-title-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cfp-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cfp-list li {
    font-size: .88rem; color: var(--muted); line-height: 1.65;
    padding-left: 22px; position: relative;
}
.cfp-list li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--gold));
}

.cfp-themes-sec {
    background: var(--alt); padding: clamp(4rem,7vw,6rem) clamp(1.5rem,5vw,4rem);
}
.cfp-themes-inner { max-width: 1100px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   THEMES PAGE
═══════════════════════════════════════════════ */
.thm-sec {
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
    background: transparent;
}
.thm-inner { max-width: 1100px; margin: 0 auto; }

.thm-grid {
    display: flex; flex-direction: column; gap: 24px;
}
.thm-item {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--card-sh); transition: all var(--transition);
}
.thm-item:hover { box-shadow: var(--card-sh-h); transform: translateY(-4px); }

.thm-item-head {
    display: flex; align-items: center; gap: 24px;
    padding: 28px 32px; cursor: pointer;
    background: var(--white);
    transition: background .3s;
}
.thm-item.open .thm-item-head { background: rgba(91,33,182,.03); }

.thm-num {
    width: 56px; height: 56px; border-radius: 14px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: .95rem; font-weight: 900; color: var(--white);
}
.thm-head-text { flex: 1; }
.thm-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.thm-subtitle { font-size: .82rem; color: var(--muted); }
.thm-chevron {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: .85rem;
    transition: all .35s; flex-shrink: 0;
}
.thm-item.open .thm-chevron {
    background: var(--primary); color: white; border-color: var(--primary);
    transform: rotate(180deg);
}

.thm-item-body {
    padding: 0 32px 0; max-height: 0; overflow: hidden;
    transition: max-height .5s cubic-bezier(.23,1,.32,1), padding .4s;
}
.thm-item.open .thm-item-body { max-height: 600px; padding: 0 32px 28px; }

.thm-subtopics {
    list-style: none; display: flex; flex-direction: column; gap: 10px;
    padding-top: 16px; border-top: 1px solid var(--border);
}
.thm-subtopics li {
    font-size: .88rem; color: var(--muted); padding-left: 24px;
    position: relative; line-height: 1.6;
}
.thm-subtopics li::before {
    content: '';
    position: absolute; left: 0; top: 8px;
    width: 8px; height: 8px; border-radius: 2px;
    background: linear-gradient(135deg, var(--primary-l), var(--gold));
}

/* ═══════════════════════════════════════════════
   PROGRAM PAGE
═══════════════════════════════════════════════ */
.prg-sec {
    padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
    background: transparent;
}
.prg-inner { max-width: 1060px; margin: 0 auto; }

.prg-day-tabs {
    display: flex; gap: 12px; margin-bottom: 48px; justify-content: center;
}
.prg-tab {
    padding: 12px 32px; border-radius: 50px; border: none;
    font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 700;
    cursor: pointer; transition: all .35s;
    background: var(--alt); color: var(--muted);
    border: 1.5px solid var(--border);
}
.prg-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: white; border-color: transparent;
    box-shadow: 0 6px 24px rgba(91,33,182,.3);
}

.prg-day-panel { display: none; }
.prg-day-panel.active { display: block; }

.prg-timeline { display: flex; flex-direction: column; gap: 0; }

.prg-item {
    display: flex; gap: 24px; align-items: flex-start;
    position: relative; padding-bottom: 4px;
}
.prg-item:not(:last-child)::after {
    content: ''; position: absolute;
    left: 73px; top: 44px; bottom: -4px; width: 2px;
    background: linear-gradient(to bottom, rgba(91,33,182,.2), rgba(201,168,76,.1));
}
.prg-time {
    width: 100px; flex-shrink: 0; padding-top: 16px;
    font-size: .8rem; font-weight: 700; color: var(--primary);
    text-align: right; letter-spacing: .3px;
}
.prg-dot {
    width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
    margin-top: 20px; position: relative; z-index: 1;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    box-shadow: 0 0 0 4px rgba(91,33,182,.1);
}
.prg-content {
    flex: 1; background: var(--white); border: 1px solid var(--border);
    border-radius: 16px; padding: 18px 22px;
    margin-bottom: 16px; box-shadow: var(--card-sh);
    transition: all var(--transition);
}
.prg-content:hover { transform: translateX(4px); box-shadow: var(--card-sh-h); }
.prg-content.break {
    background: var(--alt); border-color: transparent; box-shadow: none;
}
.prg-content.break:hover { transform: none; box-shadow: none; }
.prg-content.keynote { border-left: 3px solid var(--gold); }
.prg-content.ceremony { border-left: 3px solid var(--primary); }
.prg-event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 5px;
}
.prg-event-sub { font-size: .81rem; color: var(--muted); line-height: 1.6; }
.prg-event-badge {
    display: inline-flex; align-items: center;
    font-size: .65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; padding: 3px 10px; border-radius: 50px;
    margin-bottom: 8px;
}
.badge-keynote { background: rgba(201,168,76,.12); color: #9A7A2A; }
.badge-session  { background: rgba(91,33,182,.08); color: var(--primary); }
.badge-break    { background: rgba(100,116,139,.1); color: var(--muted); }
.badge-ceremony { background: rgba(16,185,129,.1); color: #065F46; }

/* ═══════════════════════════════════════════════
   RESPONSIVE — NEW PAGES
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .spk-grid { grid-template-columns: repeat(2,1fr); }
    .cfp-dates-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .spk-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .cfp-two-col { grid-template-columns: 1fr; }
    .cfp-dates-grid { grid-template-columns: 1fr 1fr; }
    .prg-time { width: 70px; font-size: .72rem; }
    .spk-modal-panel { padding: 32px 24px; }
    .spk-modal-header { flex-direction: column; text-align: center; }
    .thm-item-head { padding: 20px 20px; gap: 16px; }
    .thm-item-body { padding: 0 20px 0; }
    .thm-item.open .thm-item-body { padding: 0 20px 20px; }
}
@media (max-width: 480px) {
    .cfp-dates-grid { grid-template-columns: 1fr; }
    .prg-item { gap: 14px; }
    .prg-time { width: 56px; }
    .prg-item:not(:last-child)::after { left: 55px; }
}

/* ═══════════════════════════════════════════════
   SPEAKER CARD — WITH PHOTO (v2)
═══════════════════════════════════════════════ */
.spk-card-photo {
    position: relative; height: 260px; overflow: hidden;
    background: linear-gradient(135deg, var(--primary-d), var(--navy));
}
.spk-card-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    transition: transform .7s cubic-bezier(.23,1,.32,1);
    display: block;
}
.spk-card:hover .spk-card-photo img { transform: scale(1.07); }
.spk-card-photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,24,41,.55) 0%, rgba(11,24,41,.05) 60%, transparent 100%);
}
.spk-card-photo-theme {
    position: absolute; bottom: 14px; left: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: white; font-size: .63rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.4px;
    padding: 4px 12px; border-radius: 50px;
    backdrop-filter: blur(8px);
}
.spk-card-body { padding: 22px 24px 16px; text-align: left; }
.spk-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--dark);
    margin-bottom: 5px; line-height: 1.3;
}
.spk-pos {
    font-size: .78rem; color: var(--primary); font-weight: 600;
    margin-bottom: 5px; line-height: 1.4;
}
.spk-affil {
    font-size: .76rem; color: var(--muted);
    display: flex; align-items: center; gap: 5px;
    margin-bottom: 0;
}
.spk-card-foot {
    padding: 14px 24px 18px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid var(--border); margin-top: 14px;
}
.spk-view-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 700; color: var(--primary);
    text-decoration: none; transition: all .3s;
    background: rgba(91,33,182,.07); padding: 9px 18px;
    border-radius: 50px; border: 1px solid rgba(91,33,182,.12);
}
.spk-view-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: white; border-color: transparent;
    box-shadow: 0 6px 20px rgba(91,33,182,.3);
    gap: 12px;
}

/* ═══════════════════════════════════════════════
   SPEAKER PROFILE PAGE
═══════════════════════════════════════════════ */
.spp-hero {
    background: linear-gradient(160deg, #060D1A 0%, #0B1829 55%, #0E2240 100%);
    padding: clamp(110px,15vw,160px) clamp(1.5rem,5vw,4rem) 80px;
    position: relative; overflow: hidden;
}
.spp-hero::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(91,33,182,.18) 0%, transparent 65%);
    pointer-events: none;
}
.spp-hero-inner {
    max-width: 1060px; margin: 0 auto;
    display: flex; align-items: center; gap: clamp(32px,5vw,72px);
    position: relative; z-index: 2;
}
.spp-photo-wrap { flex-shrink: 0; }
.spp-photo {
    width: 200px; height: 200px; border-radius: 50%;
    overflow: hidden; position: relative;
    border: 4px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 8px rgba(91,33,182,.15);
}
.spp-photo img {
    width: 100%; height: 100%; object-fit: cover; object-position: center top;
    display: block;
}
.spp-photo-init {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; font-weight: 900; color: white;
}
.spp-hero-details { flex: 1; }
.spp-back-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.45);
    text-decoration: none; margin-bottom: 20px; transition: color .3s;
}
.spp-back-link:hover { color: var(--gold-l); }
.spp-hero-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: rgba(201,168,76,.85);
    background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
    padding: 5px 14px; border-radius: 50px; margin-bottom: 16px;
}
.spp-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 900; color: white; letter-spacing: -1px;
    line-height: 1.1; margin-bottom: 12px;
}
.spp-pos {
    font-size: .95rem; color: rgba(139,92,246,.85); font-weight: 600;
    margin-bottom: 6px;
}
.spp-affil {
    font-size: .88rem; color: rgba(255,255,255,.45);
    display: flex; align-items: center; gap: 7px; margin-bottom: 24px;
}
.spp-hero-curve {
    position: absolute; bottom: -1px; left: 0; right: 0; z-index: 3; line-height: 0;
}

.spp-body {
    max-width: 1060px; margin: 0 auto;
    padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
    display: grid; grid-template-columns: 280px 1fr; gap: 48px;
}
.spp-sidebar {}
.spp-sidebar-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--card-sh);
    margin-bottom: 24px; position: sticky; top: 100px;
}
.spp-sidebar-title {
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--muted); margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.spp-fact {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px;
}
.spp-fact:last-child { margin-bottom: 0; }
.spp-fact-icon {
    width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(91,33,182,.1), rgba(201,168,76,.08));
    display: flex; align-items: center; justify-content: center;
}
.spp-fact-label { font-size: .7rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.spp-fact-val { font-size: .85rem; color: var(--dark); font-weight: 600; line-height: 1.4; }

.spp-main {}
.spp-section-label {
    font-size: .7rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--primary); margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
}
.spp-section-label::before {
    content: ''; width: 20px; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 2px;
}
.spp-bio-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--dark);
    margin-bottom: 20px; line-height: 1.2;
}
.spp-bio-text {
    font-size: .95rem; color: var(--muted); line-height: 1.9;
    margin-bottom: 36px;
}
.spp-talk-card {
    background: linear-gradient(135deg, rgba(91,33,182,.05), rgba(201,168,76,.05));
    border: 1px solid rgba(91,33,182,.12);
    border-left: 5px solid linear-gradient(var(--primary), var(--gold));
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-lg); padding: 28px 32px;
    position: relative; overflow: hidden; margin-bottom: 36px;
}
.spp-talk-card::before {
    content: '"';
    position: absolute; top: -12px; right: 24px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem; color: rgba(91,33,182,.06);
    line-height: 1; font-weight: 900;
}
.spp-talk-label {
    font-size: .68rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gold); margin-bottom: 12px;
}
.spp-talk-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700; color: var(--dark);
    line-height: 1.45; font-style: italic;
}

.spp-nav-row {
    display: flex; gap: 16px; margin-top: 8px;
}
.spp-nav-btn {
    flex: 1; padding: 14px 20px; border-radius: var(--radius);
    border: 1.5px solid var(--border); background: var(--white);
    text-decoration: none; text-align: center; transition: all .3s;
    box-shadow: var(--card-sh);
}
.spp-nav-btn-label { font-size: .65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.spp-nav-btn-name { font-family: 'Playfair Display', serif; font-size: .9rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.spp-nav-btn:hover { border-color: var(--primary); box-shadow: var(--card-sh-h); transform: translateY(-2px); }
.spp-nav-btn:hover .spp-nav-btn-name { color: var(--primary); }

/* ═══════════════════════════════════════════════
   CFP REDESIGN (v2)
═══════════════════════════════════════════════ */
.cfp2-benefit-strip {
    background: var(--alt); padding: 40px clamp(1.5rem,5vw,4rem);
    border-bottom: 1px solid var(--border);
}
.cfp2-benefit-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.cfp2-benefit {
    display: flex; align-items: flex-start; gap: 16px;
}
.cfp2-benefit-icon {
    width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    display: flex; align-items: center; justify-content: center;
}
.cfp2-benefit-title {
    font-weight: 700; font-size: .9rem; color: var(--dark); margin-bottom: 4px;
}
.cfp2-benefit-desc { font-size: .81rem; color: var(--muted); line-height: 1.65; }

/* Dates timeline */
.cfp2-dates-sec {
    padding: clamp(4rem,7vw,6rem) clamp(1.5rem,5vw,4rem);
    background: transparent;
}
.cfp2-dates-inner { max-width: 880px; margin: 0 auto; }
.cfp2-tl { position: relative; }
.cfp2-tl::before {
    content: ''; position: absolute; left: 180px; top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(201,168,76,.4), rgba(91,33,182,.1));
}
.cfp2-tl-item {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 8px; position: relative;
}
.cfp2-tl-date {
    width: 166px; text-align: right; flex-shrink: 0;
    padding-right: 24px;
}
.cfp2-tl-date-day {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 900; color: var(--primary);
    line-height: 1;
}
.cfp2-tl-date-month {
    font-size: .72rem; font-weight: 700; color: var(--muted);
    text-transform: uppercase; letter-spacing: 1.5px;
}
.cfp2-tl-dot {
    width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    box-shadow: 0 0 0 5px rgba(91,33,182,.1), 0 4px 12px rgba(91,33,182,.25);
    z-index: 1; position: relative;
}
.cfp2-tl-item.conference .cfp2-tl-dot {
    background: linear-gradient(135deg, var(--gold), #B8953A);
    box-shadow: 0 0 0 5px rgba(201,168,76,.15), 0 4px 16px rgba(201,168,76,.4);
    width: 36px; height: 36px;
}
.cfp2-tl-content {
    flex: 1; padding: 16px 20px 16px 24px;
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; margin-left: 20px; box-shadow: var(--card-sh);
    transition: all var(--transition);
}
.cfp2-tl-content:hover { transform: translateX(4px); box-shadow: var(--card-sh-h); }
.cfp2-tl-item.conference .cfp2-tl-content {
    background: linear-gradient(135deg, rgba(91,33,182,.04), rgba(201,168,76,.04));
    border-color: rgba(91,33,182,.12);
}
.cfp2-tl-label {
    font-size: .67rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.8px; color: var(--muted); margin-bottom: 4px;
}
.cfp2-tl-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700; color: var(--dark);
}
.cfp2-tl-note { font-size: .79rem; color: var(--muted); margin-top: 4px; line-height: 1.55; }

/* Guidelines two-col */
.cfp2-guide-sec {
    background: var(--alt);
    padding: clamp(4rem,7vw,6rem) clamp(1.5rem,5vw,4rem);
}
.cfp2-guide-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
}
.cfp2-guide-box {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); padding: 36px 32px;
    box-shadow: var(--card-sh); position: relative; overflow: hidden;
}
.cfp2-guide-box::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.cfp2-guide-box.guide { }
.cfp2-guide-box.guide::before { background: linear-gradient(90deg, var(--primary), var(--primary-l)); }
.cfp2-guide-box.review::before { background: linear-gradient(90deg, var(--gold), var(--primary-l)); }
.cfp2-guide-box-head {
    display: flex; align-items: center; gap: 14px; margin-bottom: 24px;
}
.cfp2-guide-icon {
    width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.guide .cfp2-guide-icon { background: linear-gradient(135deg, var(--primary), var(--primary-d)); }
.review .cfp2-guide-icon { background: linear-gradient(135deg, var(--gold), #B8953A); }
.cfp2-guide-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700; color: var(--dark);
}
.cfp2-guide-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cfp2-guide-list li {
    font-size: .87rem; color: var(--muted); line-height: 1.65;
    padding: 12px 14px 12px 38px; position: relative;
    background: var(--alt); border-radius: 10px;
}
.cfp2-guide-list li::before {
    content: ''; position: absolute; left: 14px; top: 17px;
    width: 8px; height: 8px; border-radius: 2px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
}

/* Format specs */
.cfp2-format-sec {
    padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
    background: transparent;
}
.cfp2-format-inner { max-width: 1100px; margin: 0 auto; }
.cfp2-format-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
    margin-top: 40px;
}
.cfp2-spec-item {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 22px 20px;
    box-shadow: var(--card-sh); transition: all var(--transition);
    display: flex; align-items: center; gap: 14px;
}
.cfp2-spec-item:hover { transform: translateY(-4px); box-shadow: var(--card-sh-h); }
.cfp2-spec-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: linear-gradient(135deg, rgba(91,33,182,.1), rgba(201,168,76,.08));
    display: flex; align-items: center; justify-content: center;
}
.cfp2-spec-label { font-size: .68rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 3px; }
.cfp2-spec-val { font-size: .9rem; font-weight: 700; color: var(--dark); }

/* CTA banner */
.cfp2-cta {
    margin: 0 clamp(1.5rem,5vw,4rem) clamp(3rem,6vw,5rem);
    border-radius: var(--radius-lg); overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #2E0B5E);
    position: relative;
}
.cfp2-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,.07), transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.12), transparent 50%);
}
.cfp2-cta-inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr auto;
    align-items: center; gap: 32px; padding: 48px clamp(28px,5vw,56px);
}
.cfp2-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem,3vw,2rem);
    font-weight: 900; color: white; margin-bottom: 8px;
}
.cfp2-cta-title em { color: var(--gold-l); font-style: italic; }
.cfp2-cta-sub { font-size: .88rem; color: rgba(255,255,255,.6); max-width: 460px; line-height: 1.7; }
.cfp2-cta-btns { display: flex; gap: 12px; flex-direction: column; }

/* Responsive */
@media (max-width: 1024px) {
    .spp-body { grid-template-columns: 1fr; }
    .spp-sidebar-card { position: static; }
    .cfp2-benefit-inner { grid-template-columns: 1fr; gap: 16px; }
    .cfp2-format-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
    .spp-hero-inner { flex-direction: column; text-align: center; gap: 24px; }
    .spp-back-link { justify-content: center; }
    .spp-affil { justify-content: center; }
    .cfp2-guide-inner { grid-template-columns: 1fr; }
    .cfp2-tl::before { left: 60px; }
    .cfp2-tl-date { width: 50px; }
    .cfp2-tl-date-day { font-size: 1.1rem; }
    .cfp2-tl-date-month { font-size: .6rem; }
    .cfp2-cta-inner { grid-template-columns: 1fr; }
    .spp-nav-row { flex-direction: column; }
}
@media (max-width: 480px) {
    .cfp2-format-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   PAGE HERO  (.ph)
═══════════════════════════════════════════════ */
.ph {
    position: relative; min-height: 54vh;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg,#060D1A 0%,#0B1829 50%,#0E2240 100%);
}
.ph-img {
    position: absolute;
    inset: 0;
    background-image: url('_/img/bg-law.html');
    background-size: cover;
    background-position: center;
    opacity: .1;
    will-change: transform;
}
.ph-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 40% 50%,rgba(201,168,76,.12) 0%,transparent 65%),
                radial-gradient(ellipse at 70% 30%,rgba(91,33,182,.18) 0%,transparent 60%);
}
.ph-inner {
    position: relative; z-index: 2; text-align: center;
    max-width: 720px; padding: clamp(80px,12vw,120px) 24px 60px;
}
.ph-inner .s-tag { color:rgba(201,168,76,.9); background:rgba(201,168,76,.1); border:1px solid rgba(201,168,76,.2); }
.ph-inner .s-title { color: var(--white); }
.ph-sub {
    font-size: 1rem; color: rgba(255,255,255,.55); line-height: 1.75;
    margin-top: 16px; max-width: 560px; margin-left: auto; margin-right: auto;
}
.ph-curve { position: absolute; bottom: -1px; left: 0; right: 0; overflow: hidden; line-height: 0; z-index: 3; }
.ph-curve svg { display: block; width: 100%; height: 80px; }

/* ═══════════════════════════════════════════════
   INTERSECTION OBSERVER REVEALS  (replaces GSAP triggers)
═══════════════════════════════════════════════ */
.reveal       { opacity:0; transform:translateY(40px); transition:opacity .75s ease, transform .75s ease; }
.reveal-left  { opacity:0; transform:translateX(-52px); transition:opacity .8s ease, transform .8s ease; }
.reveal-right { opacity:0; transform:translateX(52px);  transition:opacity .8s ease, transform .8s ease; }
.reveal-scale { opacity:0; transform:scale(.94) translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.in-view      { opacity:1 !important; transform:none !important; }

/* stagger siblings within a grid */
.reveal-scale:nth-child(2) { transition-delay:.08s; }
.reveal-scale:nth-child(3) { transition-delay:.16s; }
.reveal-scale:nth-child(4) { transition-delay:.24s; }
.reveal-scale:nth-child(5) { transition-delay:.32s; }
.reveal-scale:nth-child(6) { transition-delay:.40s; }

/* ═══════════════════════════════════════════════
   PROGRAM  — mobile responsive
═══════════════════════════════════════════════ */
.prg-venue-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
@media(max-width:640px) {
    .prg-venue-grid { grid-template-columns: 1fr; }
    .prg-day-tabs { flex-direction: column; align-items: stretch; gap: 8px; }
    .prg-tab { text-align: center; padding: 12px 16px; }
    .prg-item { gap: 10px; }
    .prg-time { width: 52px; font-size: .72rem; }
    .prg-item:not(:last-child)::after { left: 48px; }
    .prg-content { padding: 14px 16px; }
    .prg-event-title { font-size: .92rem; }
}

/* ═══════════════════════════════════════════════
   NAV BRAND  mobile
═══════════════════════════════════════════════ */
@media(max-width:768px) {
    .nav-brand-icon { width: 56px; height: 56px; }
    .nav-brand-icon img { width: 54px; height: 54px; }
    .nav-brand-text { font-size: 1.5rem; }
    .nav-brand-sub { display: none; }
}

/* ═══════════════════════════════════════════════
   LANGUAGE TOGGLE BUTTON (navbar)
═══════════════════════════════════════════════ */
.nav-lang-btn {
    font-size: .78rem !important;
    font-weight: 700 !important;
    letter-spacing: .5px !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    transition: all .3s !important;
}
.nav-solid .nav-lang-btn {
    border: 1.5px solid rgba(91,33,182,.28) !important;
    color: var(--primary) !important;
}
.nav-solid .nav-lang-btn:hover {
    background: rgba(91,33,182,.06) !important;
    border-color: var(--primary) !important;
}
.nav-transparent .nav-lang-btn {
    border: 1.5px solid rgba(255,255,255,.32) !important;
    color: rgba(255,255,255,.9) !important;
}
.nav-transparent .nav-lang-btn:hover {
    background: rgba(255,255,255,.1) !important;
    color: white !important;
}

/* ═══════════════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════════════ */
.back-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
    width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: white; font-size: 1.1rem;
    box-shadow: 0 4px 18px rgba(91,33,182,.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transform: translateY(16px);
    transition: opacity .4s, transform .4s, box-shadow .3s;
}
[dir="rtl"] .back-top { right: auto; left: 2rem; }

/* ═══════════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════════ */
.mob-menu {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 799;
    background: rgba(11,24,41,.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    padding: 0 20px 40px;
}

/* Header row inside drawer */
.mob-menu-head {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 480px;
    padding: 18px 0 22px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Close button */
.mob-close {
    background: none; border: none; color: rgba(255,255,255,.45);
    font-size: 1.4rem; cursor: pointer;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: background .2s, color .2s;
    flex-shrink: 0;
}
.mob-close:hover { color: white; background: rgba(255,255,255,.1); }

/* Logo inside drawer */
.mob-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
}
.mob-logo img { width: 50px; height: 50px; border-radius: 50%; }
.mob-logo-wrap { display: flex; flex-direction: column; gap: 2px; }
.mob-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem; font-weight: 700; color: white;
    line-height: 1; letter-spacing: .5px;
}
.mob-logo-name em { color: var(--gold); font-style: italic; }
.mob-logo-sub {
    font-size: 0.6rem; color: rgba(255,255,255,.42);
    letter-spacing: 2px; text-transform: uppercase;
}

/* Nav links */
.mob-links {
    display: flex; flex-direction: column;
    width: 100%; max-width: 480px; gap: 2px; margin-bottom: 20px;
}
.mob-link {
    display: block; padding: 14px 20px; border-radius: 10px;
    text-align: center; text-decoration: none;
    font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,.78);
    transition: background .2s, color .2s; letter-spacing: .2px;
}
.mob-link:hover, .mob-link.active {
    background: rgba(255,255,255,.07); color: white;
}

/* Divider */
.mob-divider {
    width: 100%; max-width: 480px; height: 1px;
    background: rgba(255,255,255,.08); margin: 4px 0 20px; flex-shrink: 0;
}

/* CTA buttons */
.mob-actions {
    display: flex; flex-direction: column; gap: 10px;
    width: 100%; max-width: 480px; margin-bottom: 20px;
}
.mob-btn-reg {
    display: block; padding: 14px 24px; border-radius: 50px; text-align: center;
    text-decoration: none; font-size: .95rem; font-weight: 700;
    border: 1.5px solid rgba(255,255,255,.22); color: rgba(255,255,255,.85);
    transition: all .2s;
}
.mob-btn-reg:hover {
    border-color: rgba(255,255,255,.48); background: rgba(255,255,255,.06); color: white;
}
.mob-btn-submit {
    display: block; padding: 14px 24px; border-radius: 50px; text-align: center;
    text-decoration: none; font-size: .95rem; font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-d));
    color: white; box-shadow: 0 4px 18px rgba(91,33,182,.45);
    transition: all .2s;
}
.mob-btn-submit:hover {
    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(91,33,182,.6);
}

/* Language toggle inside drawer */
.mob-lang {
    display: inline-block; padding: 9px 24px; border-radius: 50px;
    font-size: .82rem; font-weight: 700; letter-spacing: .5px;
    border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6);
    text-decoration: none; transition: all .2s;
}
.mob-lang:hover {
    border-color: rgba(255,255,255,.42); color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.05);
}
