:root {
    --purple: #90308d;
    --purple-light: #d65ced;
    --magenta: #C026D3;
    --green: #28e023;
    --green-variant: #9bd600;
    --dark: #0D0620;
    --mid: #1A0A38;
    --card-bg: #F9F7FF;
}

* {
    box-sizing: border-box;
}



body {
    color: #1a1a2e;
    font-family: "myriad-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Barlow", sans-serif;
}

h1 {
    font-weight: 700;
    font-style: normal;
}

h2 {
    font-weight: 700;
    font-style: normal;
}


/** ── NAV ── **/
.site-nav {
    background-color: transparent;
}

.site-nav .nav-wrapper  {
    background: #fff;
    border-radius: 40px;
    margin: 20px;
    padding: 5px 25px; 
    position: relative;
    z-index: 20;
}

.site-nav .logo img {
    height: auto;
    max-width: 120px;
    width: 100%;
}

.site-nav nav a {
    text-decoration: none;
    color: #555;
    font-size: .9rem;
    margin-left: 24px;
    font-weight: 500;
}

.btn-register {
    background: linear-gradient(
        to right,
        var(--purple) 0%,
        var(--purple) 40%,          
        var(--purple-light) 90%,  
        var(--purple-light) 100%  
    );
    color: #fff !important;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem !important;
    padding: 7px 20px;
    font-weight: 600;
    font-size: .85rem;
    transition: background .2s;
}

.btn-register:hover {
    background: var(--purple-light);
}


/** ── HERO ── **/
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, #3B1370 50%, var(--magenta) 100%);
    padding: 180px 40px 80px;
    margin-top: -125px;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(155, 89, 245, .4) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 38, 211, .3) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 12px;
    padding: 18px 24px;
    display: inline-block;
    text-align: center;
    min-width: 120px;
}

.hero-badge .date-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.hero-badge .date-month {
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: .85;
}

.hero-logo-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 220px;
}

.hero-logo-wrap .busa-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--purple);
}

.hero-logo-wrap .sub {
    font-size: .6rem;
    color: #555;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.led-by {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--magenta);
}

.led-by span {
    font-size: 2rem;
    color: #fff;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1rem;
    opacity: .88;
    max-width: 480px;
    line-height: 1.55;
}

.btn-primary-green {
    background: linear-gradient(
        to right,
        var(--green) 0%,
        var(--green) 40%,          
        var(--green-variant) 90%,  
        var(--green-variant) 100%  
    );
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 30px;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-primary-green:hover {
    opacity: .85;
    text-decoration: none;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50px;
    padding: 11px 26px;
    font-weight: 400;
    font-size: 1.0rem;
    cursor: pointer;
    transition: border-color .2s;
    text-decoration: none;
}

.btn-outline-white:hover {
    border-color: #fff;
    text-decoration: none;
}


/** ── SHAPING SECTION ── **/
.section-shaping {
    padding: 60px 40px;
    background: #fff;
}

.section-shaping h2 {
    font-size: 2rem;
    font-weight: 800;
}

.section-shaping p {
    color: #555;
    font-size: .93rem;
    line-height: 1.65;
}

.discover-link {
    color: var(--purple);
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
}

.discover-link:hover {
    text-decoration: underline;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple), var(--magenta));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.stat-card h6 {
    font-weight: 700;
    font-size: .88rem;
    margin: 0 0 2px;
}

.stat-card p {
    font-size: .8rem;
    color: #666;
    margin: 0;
}


/* ── CORE THEMES ── */
.section-themes {
    padding: 60px 40px;
    background: #faf8ff;
    text-align: center;
}

.section-themes h2 {
    font-size: 2rem;
    font-weight: 800;
}

.section-themes .sub {
    color: #888;
    font-size: .92rem;
    margin-bottom: 40px;
}

.theme-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(107, 33, 217, .07);
    transition: transform .2s, box-shadow .2s;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(107, 33, 217, .14);
}

.theme-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--purple-light), var(--magenta));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.theme-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.theme-card h6 {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: 6px;
}

.theme-card p {
    font-size: .82rem;
    color: #777;
    margin: 0;
    line-height: 1.5;
}


/* ── SPEAKERS SECTION ── */
.section-speakers {
    background: #0d0f2b;
    padding: 80px 0;
    overflow: hidden;
}

.section-speakers h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 20px;
}

.section-speakers h2 strong {
    color: #c044e8;
}

.section-speakers .sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    margin-top: 0.4rem;
    margin-bottom: 2rem;
}

/* Carousel wrapper */
.speaker-carousel-wrapper {
    position: relative;
}

/* Fade edges */
.speaker-carousel-wrapper::before,
.speaker-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.speaker-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #0d0f2b, transparent);
}

.speaker-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #0d0f2b, transparent);
}

.speaker-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 4px 20px;
    padding-inline: 60px; /* matches the fade width */
    scroll-padding-inline-start: 60px;
    cursor: grab;
    user-select: none;
}

.speaker-carousel-track:active {
    cursor: grabbing;
}

.speaker-carousel-track::-webkit-scrollbar {
    display: none;
}

/* Card sizing: show ~3 on desktop, 2 on tablet, 1.2 on mobile */
.speaker-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 280px;
    max-width: 360px;
    scroll-snap-align: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.speaker-card:hover {
    border-color: rgba(192, 68, 232, 0.45);
    background: rgba(192, 68, 232, 0.06);
    transform: translateY(-3px);
}

@media (max-width: 991px) {

    .speaker-card {
        flex: 0 0 calc(50% - 10px);
    }

}

@media (max-width: 575px) {

    .section-speakers {
        padding: 40px 20px;
    }

    .speaker-avatar {
        width: 160px;
        height: 160px;
    }

    .speaker-card {
        flex: 0 0 82vw;
        max-width: 82vw;
    }

    .speaker-carousel-wrapper::before,
    .speaker-carousel-wrapper::after {
        width: 40px;
    }

}

.speaker-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /*background: linear-gradient(135deg, #6a1fc2, #c044e8);*/
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.speaker-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}
.speaker-title {
    font-size: 0.8rem;
    color: #c044e8;
    font-weight: 600;
    margin: 2px 0 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.speaker-org {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}
.speaker-bio {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.speaker-badge {
    display: inline-block;
    background: rgba(192,68,232,0.15);
    border: 1px solid rgba(192,68,232,0.3);
    color: #d87ff5;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    align-self: flex-start;
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.carousel-btn:hover {
    background: rgba(192,68,232,0.2);
    border-color: rgba(192,68,232,0.5);
}
.carousel-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Dot indicators */
.carousel-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}
.carousel-dot.active {
    background: #c044e8;
    transform: scale(1.4);
}
.carousel-count {
    margin-left: auto;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
}


/* ── AGENDA SECTION ── */
.section-agenda {
    background: #10133a;
    border-radius: 30px;
    padding: 80px 0;
}

.section-agenda h2 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 36px;
}

.section-agenda h2 strong {
    color: #c044e8;
}

.section-agenda .sub {
    color: #fff;
    font-size: 1rem;
    margin-top: 0.4rem;
    margin-bottom: 2.5rem;
}

/* Day tabs */
.agenda-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.agenda-tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.agenda-tab-btn:hover {
    border-color: rgba(192, 68, 232, 0.4);
    color: #fff;
}

.agenda-tab-btn.active {
    background: linear-gradient(135deg, #6a1fc2, #c044e8);
    border-color: transparent;
    color: #fff;
}

/* Agenda panel */
.agenda-panel {
    display: none;
}

.agenda-panel.active {
    display: block;
}

.agenda-day-label {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #c044e8;
    margin-bottom: 16px;
}

/* Timeline rows */
.agenda-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0 24px;
    border-left: 2px solid rgba(192, 68, 232, 0.2);
    padding: 0 0 0 24px;
    margin-bottom: 0;
    position: relative;
}

.agenda-row::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c044e8;
}

.agenda-row+.agenda-row {
    margin-top: 2px;
}

.agenda-row.break-row {
    opacity: 0.45;
}

.agenda-row.break-row::before {
    background: rgba(255, 255, 255, 0.3);
}

.agenda-time {
    font-weight: 700;
    /*font-size: 0.82rem;*/
    color: rgba(255, 255, 255, 0.45);
    padding: 18px 0 18px;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.agenda-body {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.agenda-row:last-child .agenda-body {
    border-bottom: none;
}

.agenda-session {
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 4px;
}

.agenda-desc {
    /*font-size: 0.82rem;*/
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 8px;
    line-height: 1.5;
}

.agenda-speakers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
}

.agenda-speaker-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    white-space: pre-wrap;
}

.agenda-speaker-chip strong {
    color: #fff;
    font-weight: 600;
}

.agenda-facilitator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(192, 68, 232, 0.8);
    margin-top: 8px;
}

.agenda-facilitator::before {
    content: '◆';
    font-size: 0.55rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {

    .section-agenda {
        padding: 56px 0;
    }

    .section-agenda h2 {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

}

@media (max-width: 575px) {
    
    .section-agenda {
        padding: 40px 20px;
    }

    .section-agenda h2 {
        font-size: 1.4rem;
    }

    .agenda-tab-btn {
        flex: 1 1 0;
        text-align: center;
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    .agenda-row {
        grid-template-columns: 1fr;
        gap: 2px;
        padding-left: 20px;
    }

    .agenda-row::before {
        top: 14px;
    }

    .agenda-time {
        padding: 14px 0 2px;
        font-size: 0.75rem;
    }

    .agenda-body {
        padding: 4px 0 16px;
    }

    .agenda-session {
        font-size: 0.97rem;
    }

    .agenda-speaker-chip {
        white-space: normal;
        font-size: 0.78rem;
    }

    .agenda-facilitator {
        flex-wrap: wrap;
        font-size: 0.78rem;
    }

}


/* ── TWO-DAY WORKSHOP ── */
.section-workshop {
    padding: 60px 40px;
    background: #fff;
}

.section-workshop h2 {
    font-size: 2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 36px;
}


/** Day cards **/
.day-card {
    background: #F3F3FF;
    border: 1px solid #e8e2f8;
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
}


/** Day badges **/
.day-badge {
    font-weight: 700;
}

.day-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--magenta), var(--purple-light));
    color: #fff;
    border-radius: 50px;
    padding: 7px 14px;
    font-weight: 700;
    font-size: .82rem;
    margin: 0 5px 10px 0;
}

.day-badge.day2 span {
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    padding: 7px 14px;
}

.day-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.day-card .date-tag {
    font-size: .82rem;
    color: #000;
    margin-bottom: 12px;
    font-weight: 500;
}

.day-card p {
    font-size: .85rem;
    color: #555;
    line-height: 1.55;
}

.day-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .83rem;
    color: #444;
    margin-bottom: 6px;
}

.day-feature::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background: var(--purple);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── CTA BANNER ── */
.section-cta {
    background: linear-gradient(135deg, #7C3AED 0%, var(--magenta) 100%);
    border-radius: 30px;
    color: #fff;
    padding: 60px 40px;
    position: relative;
    text-align: center;
    z-index: 16;
}

.section-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.section-cta p {
    opacity: .88;
    font-size: .95rem;
    max-width: 520px;
    margin: 0 auto 28px;
}

/* ── FOOTER ── */
footer {
    background: #111828;
    /* background: var(--dark); */
    color: rgba(255, 255, 255, .7);
    margin-top: -30px;
    padding: 78px 40px 24px;
    position: relative;
    z-index: 10;
}

footer .footer-logo img {
    height: auto;
    max-width: 200px;
    width: 100%;
}

footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

footer a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    display: block;
    font-size: .85rem;
    margin-bottom: 6px;
    transition: color .2s;
}

footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 32px;
    padding-top: 16px;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
}

.footer-bottom a {
    display: inline-block;
}

.footer-bottom p {
    /*white-space: nowrap;*/
}


@media (max-width: 480px) {

    .site-nav .nav-wrapper {
        padding: 5px 15px;
    }

    .btn-register {
        font-size: 0.9rem !important;
    }

}

@media (max-width: 768px) {

    .menu-desktop {
        display: none;
    }

    .section-shaping,
    .section-themes,
    .section-workshop,
    .section-cta {
        padding: 48px 20px;
    }

    footer {
        padding: 40px 20px 20px;
    }
}

@media screen and (max-width: 991px) {

    .hero {
        padding: 140px 20px 40px;
    }
    
    .event-banner-img-wrapper img {
        max-width: 90%;
        margin-bottom: 30px;
        width: 100%;
    }

}

@media screen and (min-width: 991px) {
    
    .event-banner-img-wrapper img {
        max-width: 90%;
        width: 100%;
    }

}

@media screen and (min-width: 1200px) {
    
    .event-banner-img-wrapper img {
        max-width: 90%;
        width: 100%;
    }

}

@media (min-width: 1400px) {
    
    .event-banner-img-wrapper img {
        max-width: 80%;
        width: 100%;
    }

}

@media screen and (min-width: 1400px) {
    
    .event-banner-img-wrapper img {
        max-width: 75%;
        width: 100%;
    }

}


/* ═══════════════════════════════════════ */
/* WORKSHOP REPORT SECTION */
/* ═══════════════════════════════════════ */
.section-report {
	background: #0d0f2b;
	border-radius: 30px;
	padding: 80px 40px;
	color: #fff;
}

.section-report h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: 800;
	text-align: left;
	margin-bottom: 20px;
}

.section-report h2 strong {
	color: #c044e8;
}

.section-report .sub {
	color: rgba(255, 255, 255, 0.55);
	font-size: 1rem;
	margin-bottom: 3rem;
}

.report-highlight-card {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 2.5rem;
}

.report-highlights {
	display: flex;
	gap: 2rem;
	margin-top: 1.5rem;
	flex-wrap: wrap;
}

.report-stat-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.report-stat-icon {
	width: 48px;
	height: 48px;
	background: rgba(192, 68, 232, 0.15);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.report-stat-icon svg {
	width: 24px;
	height: 24px;
	fill: #c044e8;
}

.report-stat-label {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.report-stat-value {
	font-size: 1.125rem;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.btn-download-report {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, #6a1fc2, #c044e8);
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1rem;
	transition: all 0.25s ease;
	letter-spacing: 0.3px;
}

.btn-download-report:hover {
	transform: translateY(-2px);
	opacity: 0.9;
	color: #fff;
}

.btn-download-report svg {
	width: 24px;
	height: 24px;
	fill: currentColor;
}

.report-meta {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.35);
	margin: 0;
}

.report-day-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 2rem;
	height: 100%;
	transition: all 0.25s ease;
}

.report-day-card:hover {
	background: rgba(192, 68, 232, 0.06);
	border-color: rgba(192, 68, 232, 0.3);
	transform: translateY(-3px);
}

.report-day-badge {
	display: inline-block;
	background: rgba(192, 68, 232, 0.15);
	border: 1px solid rgba(192, 68, 232, 0.3);
	color: #d87ff5;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.report-day-badge.day2 {
	background: rgba(144, 48, 141, 0.2);
	border-color: rgba(144, 48, 141, 0.4);
	color: #d65ced;
}

.report-day-theme {
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.85rem;
	margin-top: 0.5rem;
	margin-bottom: 1.5rem;
}

.report-key-points {
	list-style: none;
	padding: 0;
	margin: 0;
}

.report-key-points li {
	padding-left: 1.75rem;
	margin-bottom: 1rem;
	position: relative;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
	font-size: 0.85rem;
}

.report-key-points li:before {
	content: "→";
	position: absolute;
	left: 0;
	color: #c044e8;
	font-weight: 600;
}

@media (max-width: 991px) {
	.report-highlight-card {
		padding: 2rem 1.5rem;
	}
	
	.btn-download-report {
		width: 100%;
		justify-content: center;
		margin-top: 1rem;
	}
}

@media (max-width: 767px) {
	.section-report {
		padding: 56px 20px;
	}
	
	.section-report h2 {
		font-size: 1.6rem;
	}
}