/* =============================================
   Beyond Limits — Event Report Page Styles
   ============================================= */

/* ---- Report Hero ---- */
.report-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.report-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.report-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.report-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(12, 12, 20, 0.4) 0%,
            rgba(12, 12, 20, 0.65) 50%,
            rgba(12, 12, 20, 0.85) 100%);
}

.report-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.report-hero__badge {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    padding: 10px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
}

.report-hero__title {
    margin-bottom: 20px;
}

.report-hero__title-main {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1.1;
}

.report-hero__title-sub {
    display: block;
    font-family: var(--font-en);
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #ff6b35, #e63329, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 4px;
}

.report-hero__theme {
    font-family: var(--font-ja);
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    margin-bottom: 40px;
    line-height: 1.8;
}

.report-hero__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.report-hero__meta-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.report-hero__meta-label {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(230, 100, 80, 0.9);
}

.report-hero__meta-value {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.report-hero__meta-value em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 6px;
    font-size: 0.75em;
}

.report-hero__meta-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
}

.report-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.report-hero__scroll span {
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.4);
}

.report-hero__scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}


/* ---- Report Sections ---- */
.report-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.report-section--overview {
    background: var(--color-bg-dark);
}

.report-section--opening {
    background: var(--color-bg-section);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.report-section--keynote {
    background: var(--color-bg-dark);
}

.report-section--panel {
    background: var(--color-bg-section);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.report-section--pitch {
    background: var(--color-bg-dark);
}

.report-section--networking {
    background: var(--color-bg-section);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.report-section--organizers {
    background: var(--color-bg-dark);
}

.report-section--next {
    background: #0c0c14;
    padding: 120px 0;
}


/* ---- Overview ---- */
.report-overview {
    text-align: center;
}

.report-overview__lead {
    font-size: 1rem;
    line-height: 2.2;
    color: var(--color-text-body);
    margin-bottom: 60px;
    text-align: left;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.report-overview__lead strong {
    color: var(--color-primary);
    font-weight: 700;
}

.report-overview__about {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    margin-bottom: 48px;
}

.report-overview__about-title {
    font-family: var(--font-ja);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.report-overview__about-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 2;
    margin-bottom: 8px;
    text-align: left;
}

.report-overview__structure {
    margin-bottom: 48px;
}

.report-overview__structure-intro {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 2;
    margin-bottom: 32px;
    text-align: center;
}

.report-overview__theme-block {
    background: rgba(0, 0, 0, 0.02);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    padding: 32px 36px;
    margin-top: 48px;
}

.report-overview__theme-text {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 2.2;
}

.report-overview__goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.report-overview__goal {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px 28px;
    text-align: center;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.report-overview__goal:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.report-overview__goal-number {
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.report-overview__goal-title {
    font-family: var(--font-ja);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 12px;
}

.report-overview__goal-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}


/* ---- Session Block (Opening) ---- */
.report-session {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.report-session__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.report-session__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.report-session__image:hover img {
    transform: scale(1.03);
}

.report-session__tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.report-session__tag--opening {
    background: rgba(184, 28, 35, 0.08);
    color: var(--color-primary);
}

.report-session__title {
    font-family: var(--font-ja);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.report-session__speaker {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 20px;
    line-height: 1.8;
}

.report-session__speaker strong {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-heading);
}

.report-session__speaker span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.report-session__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 2;
}


/* ---- Keynote ---- */
.report-keynote__hero {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.report-keynote__hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.report-keynote__hero:hover img {
    transform: scale(1.02);
}

.report-keynote__content {
    max-width: 800px;
    margin: 0 auto 48px;
}

.report-keynote__theme {
    font-family: var(--font-ja);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--color-text-heading);
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    text-align: center;
}

.report-keynote__theme::before,
.report-keynote__theme::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--gradient-brand);
    vertical-align: middle;
    margin: 0 16px;
}

.report-keynote__speaker {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    text-align: center;
}

.report-keynote__speaker strong {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-heading);
}

.report-keynote__speaker span {
    display: block;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.report-keynote__speaker-note {
    color: var(--color-text-muted) !important;
    font-size: 0.8rem !important;
}

.report-keynote__text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 2;
    margin-bottom: 12px;
}

.report-keynote__audience {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.report-keynote__audience img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.report-keynote__caption {
    background: rgba(0, 0, 0, 0.03);
    padding: 20px 28px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-style: italic;
    border-top: 3px solid var(--color-primary);
}


/* ---- Panel Discussion ---- */
.report-panel__header {
    text-align: center;
    margin-bottom: 48px;
}

.report-panel__theme {
    font-family: var(--font-ja);
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 900;
    color: var(--color-text-heading);
    margin-bottom: 12px;
    line-height: 1.6;
}

.report-panel__intro {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.report-panel__body {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.report-panel__text {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 2.2;
    margin-bottom: 16px;
}

.report-panel__text:last-child {
    margin-bottom: 0;
}

.report-panel__subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

.report-panel__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.report-panel__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.report-panel__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.report-panel__image:hover img {
    transform: scale(1.03);
}

.report-panel__members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.report-panel__member {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.3s var(--ease-out);
}

.report-panel__member:hover {
    transform: translateY(-4px);
}

.report-panel__member--moderator {
    border-color: var(--color-primary);
    background: rgba(184, 28, 35, 0.03);
}

.report-panel__member-role {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.report-panel__member--moderator .report-panel__member-role {
    background: rgba(184, 28, 35, 0.1);
    color: var(--color-primary);
}

.report-panel__member-name {
    font-family: var(--font-ja);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}

.report-panel__member-company {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.report-panel__highlights {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-lg);
    padding: 40px;
}

.report-panel__highlights-title {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.report-panel__highlights-list {
    list-style: none;
    padding: 0;
}

.report-panel__highlights-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 2;
    margin-bottom: 8px;
}

.report-panel__highlights-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gradient-brand);
}


/* ---- Startup Pitch ---- */
.report-pitch__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.report-pitch__images--trio {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.report-pitch__images--trio .report-pitch__image {
    border-radius: 0;
    box-shadow: none;
}

.report-pitch__images--trio .report-pitch__image img {
    height: 220px;
}

.report-pitch__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.report-pitch__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.report-pitch__image:hover img {
    transform: scale(1.03);
}

.report-pitch__intro {
    max-width: 860px;
    margin: 0 auto 40px;
    text-align: left;
}

.report-pitch__intro-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 2;
    margin-bottom: 12px;
}

.report-pitch__intro-text:last-child {
    margin-bottom: 0;
}

.report-pitch__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.report-pitch__card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.report-pitch__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.report-pitch__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.report-pitch__card:hover::before {
    transform: scaleX(1);
}

.report-pitch__card-name {
    font-family: var(--font-ja);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 6px;
}

.report-pitch__card-company {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.report-pitch__card-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}


/* ---- Networking ---- */
.report-networking__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.report-networking__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.report-networking__image:hover img {
    transform: scale(1.02);
}

.report-networking__text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.report-networking__text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 2.2;
    margin-bottom: 16px;
}

.report-networking__text:last-child {
    margin-bottom: 0;
}

.report-networking__closing {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.report-networking__closing-title {
    font-family: var(--font-ja);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--color-text-heading);
    margin-bottom: 32px;
    line-height: 1.6;
}

.report-networking__closing-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 2.2;
    margin-bottom: 20px;
}

.report-networking__closing-text:last-child {
    margin-bottom: 0;
}

.report-networking__closing-text strong {
    color: var(--color-primary);
    font-weight: 700;
}


/* ---- Organizers ---- */
.report-organizers {
    max-width: 800px;
    margin: 0 auto;
}

.report-organizers__item {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: baseline;
}

.report-organizers__item:first-child {
    padding-top: 0;
}

.report-organizers__item:last-child {
    border-bottom: none;
}

.report-organizers__label {
    font-family: var(--font-ja);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 60px;
    flex-shrink: 0;
}

.report-organizers__names {
    font-size: 0.85rem;
    color: var(--color-text-body);
    line-height: 1.8;
}


/* ---- Next Event CTA ---- */
.report-next {
    text-align: center;
}

.report-next__label {
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.report-next__title {
    font-family: var(--font-en);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.report-next__date {
    font-family: var(--font-ja);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.report-next__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 2;
    margin-bottom: 40px;
}

.report-next__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-brand);
    color: #fff;
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.report-next__cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px var(--color-primary-glow);
}


/* ---- Responsive ---- */
@media (max-width: 768px) {
    .report-section {
        padding: 80px 0;
    }

    .report-hero {
        min-height: 100vh;
    }

    .report-hero__meta {
        flex-direction: column;
        gap: 16px;
    }

    .report-hero__meta-divider {
        width: 40px;
        height: 1px;
    }

    .report-overview__goals {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .report-session {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .report-keynote__hero img {
        height: 240px;
    }

    .report-keynote__theme::before,
    .report-keynote__theme::after {
        display: none;
    }

    .report-panel__images {
        grid-template-columns: 1fr;
    }

    .report-panel__image img {
        height: 220px;
    }

    .report-panel__members {
        grid-template-columns: repeat(2, 1fr);
    }

    .report-panel__highlights {
        padding: 24px;
    }

    .report-pitch__images {
        grid-template-columns: 1fr;
    }

    .report-pitch__image img {
        height: 220px;
    }

    .report-pitch__grid {
        grid-template-columns: 1fr;
    }

    .report-networking__image img {
        height: 260px;
    }

    .report-organizers__item {
        flex-direction: column;
        gap: 8px;
    }

    .report-next__text br {
        display: none;
    }
}

@media (max-width: 480px) {
    .report-hero__title-main {
        font-size: 2rem;
    }

    .report-hero__title-sub {
        font-size: 1.3rem;
    }

    .report-panel__members {
        grid-template-columns: 1fr;
    }

    .report-keynote__audience img {
        height: 200px;
    }
}