/* ===== VPO PORTAL — The Information Style (Dark) ===== */
:root {
    --bg: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.025);
    --bg-section: rgba(255, 255, 255, 0.018);
    --bg-nav: rgba(10, 10, 15, 0.92);
    --border: rgba(255, 255, 255, 0.07);
    --border-light: rgba(255, 255, 255, 0.12);
    --border-med: rgba(255, 255, 255, 0.18);
    --fg: #e8e8ec;
    --fg-muted: #b0b0be;
    --fg-dim: #9a9aaa;
    --accent: #d4a84a;
    --accent-hover: #c89b3e;
    --accent-dim: rgba(212, 168, 74, .12);
    --green: #22c55e;
    --blue: #3b82f6;
    --red: #ef4444;
    --purple: #a855f7;
    --radius: 10px;
    --radius-sm: 6px;
    --font: 'Inter', 'Noto Sans JP', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-serif: 'Noto Serif JP', 'Georgia', 'Times New Roman', serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition, .2s);
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* ===== PARTICLES ===== */
#particles-js {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--bg);
    pointer-events: none;
}

#particles-js::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle 900px at 10% 20%, rgba(245, 166, 35, .04) 0%, transparent 60%),
        radial-gradient(circle 800px at 90% 80%, rgba(59, 130, 246, .03) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.p-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--bg-nav);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    height: 52px;
    display: flex;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.p-navbar-brand {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beta-tag {
    font-size: 7px;
    font-weight: 700;
    color: var(--fg-dim);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 1px 4px;
    line-height: 1.2;
    text-align: center;
}

.p-nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.p-nav-link {
    font-size: 11px;
    font-weight: 600;
    color: var(--fg-muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all .2s;
    letter-spacing: .3px;
}

.p-nav-link:hover {
    color: var(--fg);
    background: rgba(255, 255, 255, .04);
}

.p-nav-link.active {
    color: var(--accent);
}

.p-nav-sep {
    color: var(--border);
    margin: 0 2px;
    font-size: 11px;
}

.p-nav-cta {
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    background: var(--accent);
    border: none;
    border-radius: 4px;
    color: #000;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    margin-left: 12px;
}

.p-nav-cta:hover {
    background: var(--accent-hover);
}

.p-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}

.p-nav-login {
    font-size: 11px;
    font-weight: 600;
    color: var(--fg-muted);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all .2s;
}

.p-nav-login:hover {
    color: var(--fg);
    background: rgba(255, 255, 255, .04);
}

.p-nav-register {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding: 5px 12px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    transition: all .2s;
}

.p-nav-register:hover {
    background: var(--accent-dim);
    color: var(--accent-hover);
}

/* Language Custom Toggle (Portal) */
.p-nav-lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--fg);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    height: 36px;
}

.p-nav-lang-toggle:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    color: #fff;
}

/* ===== LAYOUT ===== */
.p-wrap {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ===== HERO — Editorial Compact ===== */
.p-hero {
    position: relative;
    z-index: 1;
    padding: 100px 0 0;
    border-bottom: 1px solid var(--border);
}

.p-hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 24px;
}

.p-hero-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
}

.p-hero-grid--single {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.p-hero-grid--single .p-hero-sub {
    margin-left: auto;
    margin-right: auto;
}

.p-hero-grid--single .p-hero-actions {
    justify-content: center;
}

.p-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px;
    background: var(--accent-dim);
    border: 1px solid rgba(212, 168, 74, .2);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 14px;
}

.pulse {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.p-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.shimmer {
    background: linear-gradient(90deg, #fff 0%, #c8a96e 40%, #e8d5a3 60%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

.p-hero-sub {
    font-size: 16px;
    color: var(--fg-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.p-hero-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Next Event Card */
.p-next-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

.p-next-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 2px 8px;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .2);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
}

.p-next-badge .dot {
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.p-next-vol {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.p-next-vol span {
    color: var(--accent);
}

.p-next-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0 14px;
    font-size: 12px;
    color: var(--fg-muted);
}

.p-next-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.p-next-apply {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background: var(--accent);
    border: none;
    border-radius: 6px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.p-next-apply:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(212, 168, 74, .3);
}

/* ===== TICKER ===== */
.p-ticker {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
}

.p-ticker-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.p-ticker-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}

.p-ticker-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--fg);
}

.p-ticker-label {
    font-size: 13px;
    color: var(--fg-dim);
    font-weight: 500;
}

.p-ticker-dot {
    width: 3px;
    height: 3px;
    background: var(--border-light);
    border-radius: 50%;
}

/* ===== BUTTONS ===== */
.p-btn-primary {
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 700;
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    color: #000;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.p-btn-primary:hover {
    background: var(--accent-hover);
}

.p-btn-outline {
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--fg);
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.p-btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

/* ===== SECTION TABS (The Information style) ===== */
.p-tabs {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-bottom: 20px;
}

.p-tab {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    padding: 6px 0;
    margin-right: 16px;
    cursor: pointer;
    position: relative;
    color: var(--fg-dim);
    transition: color .2s;
    text-decoration: none;
}

.p-tab.active {
    color: var(--fg);
}

.p-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.p-tab-sep {
    color: var(--border-light);
    font-size: 16px;
    margin-right: 16px;
    user-select: none;
    -webkit-user-select: none;
}


/* ===== SECTION LAYOUT ===== */
.p-section {
    position: relative;
    z-index: 1;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.p-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.p-section-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 800;
    color: var(--fg);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.p-section-more {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-dim);
    text-decoration: none;
    transition: color .2s;
}

.p-section-more:hover {
    color: var(--accent);
}

/* ===== AUTH GATE ===== */
.p-auth-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-auth-gate-inner {
    text-align: center;
}

.p-auth-gate-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.p-auth-gate-text {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--fg-muted);
    margin-bottom: 16px;
}

/* ===== SECTION HEADER RIGHT ===== */
.p-section-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* AI Interview button */
.p-btn-ai-interview {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(168, 85, 247, .3);
}

.p-btn-ai-interview:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(168, 85, 247, .5);
}

/* ===== MAIN CONTENT LAYOUT (Activity Feed hidden) ===== */
.p-interview-layout {
    display: block;
    max-width: 960px;
    margin: 0 auto;
}

.p-interview-main {
    min-width: 0;
}

/* ===== TIMELINE SIDEBAR (Hidden) ===== */
.p-timeline-side {
    display: none;
}

.p-timeline-header {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 700;
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    color: var(--fg);
}

.p-timeline-feed {}

.p-tl-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.p-tl-item:last-child {
    border-bottom: none;
}

.p-tl-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-tl-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-tl-avatar .initial {
    font-size: 12px;
    font-weight: 800;
    color: var(--fg-dim);
}

.p-tl-body {
    flex: 1;
    min-width: 0;
}

.p-tl-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 2px;
    flex-wrap: nowrap;
}

.p-tl-name {
    font-size: 11px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.p-tl-time {
    font-size: 9px;
    color: var(--fg-dim);
}

.p-tl-content {
    font-size: 11px;
    color: var(--fg-muted);
    line-height: 1.5;
}

.p-tl-company {
    font-size: 10px;
    color: var(--fg-dim);
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.p-tl-cat-badge {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 10px;
    white-space: nowrap;
}

.p-tl-time-row {
    font-size: 9px;
    color: var(--fg-dim);
    margin-left: 6px;
    flex-shrink: 0;
}

.p-tl-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    color: var(--blue);
    text-decoration: none;
    margin-top: 4px;
    transition: color .2s;
}

.p-tl-link:hover {
    color: var(--accent);
}

.p-tl-empty {
    font-size: 11px;
    color: var(--fg-dim);
    padding: 8px 0;
}

/* Timeline header row */
.p-timeline-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

/* Post button with tooltip */
.p-tl-post-wrapper {
    position: relative;
}

.p-tl-post-btn {
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--accent);
    cursor: pointer;
    transition: all .2s;
}

.p-tl-post-btn:hover {
    background: var(--accent);
    color: #000;
}

.p-tl-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 200px;
    padding: 8px 12px;
    background: rgba(30, 30, 30, .95);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 11px;
    color: var(--fg-muted);
    line-height: 1.5;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .4);
    pointer-events: none;
}

.p-tl-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 16px;
    border: 5px solid transparent;
    border-bottom-color: rgba(30, 30, 30, .95);
}

.p-tl-post-wrapper:hover .p-tl-tooltip {
    display: block;
}

/* Category badge */
.p-tl-cat-badge {
    font-size: 9px;
    padding: 1px 6px;
    background: rgba(212, 168, 74, .1);
    border: 1px solid rgba(212, 168, 74, .2);
    border-radius: 100px;
    color: var(--accent);
    white-space: nowrap;
    margin-left: auto;
}

/* Time row */
.p-tl-time-row {
    font-size: 9px;
    color: var(--fg-dim);
    margin-bottom: 4px;
}

/* Company name under timeline */
.p-tl-company {
    font-size: 10px;
    color: var(--fg-dim);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Timeline URL link */
.p-tl-url {
    margin-top: 4px;
}

.p-tl-url a {
    font-size: 10px;
    color: var(--blue, #3b82f6);
    text-decoration: none;
    transition: color .2s;
}

.p-tl-url a:hover {
    color: var(--accent);
}

/* "More" link at bottom of feed */
.p-tl-more-link {
    display: block;
    text-align: center;
    padding: 12px 0 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-top: 1px solid var(--border);
    margin-top: 8px;
    transition: all .2s;
}

.p-tl-more-link:hover {
    color: var(--accent-hover);
    background: rgba(212, 168, 74, .05);
}

/* Timeline items as links */
a.p-tl-item {
    text-decoration: none;
    color: inherit;
    transition: background .2s;
    border-radius: 6px;
    margin: 0 -6px;
    padding: 12px 6px;
}

a.p-tl-item:hover {
    background: rgba(212, 168, 74, .05);
}

/* ===== Feed Heart Button ===== */
.p-tl-actions {
    display: flex;
    align-items: center;
    margin-top: 6px;
}

.p-tl-heart-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--fg-dim);
    transition: all .2s;
}

.p-tl-heart-btn:hover {
    background: rgba(255, 100, 100, .1);
    color: #ff6b6b;
}

.p-tl-heart-btn.liked {
    color: #ff4d6d;
}

.p-tl-heart-btn .heart-icon {
    font-size: 14px;
    line-height: 1;
    transition: transform .2s;
}

.p-tl-heart-btn:hover .heart-icon {
    transform: scale(1.2);
}

.p-tl-heart-btn .heart-count {
    font-size: 11px;
    font-weight: 600;
    min-width: 8px;
}

@keyframes heartPop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

/* ===== Feed Comment Button ===== */
.p-tl-comment-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--fg-dim);
    transition: all .2s;
    margin-left: 4px;
}

.p-tl-comment-btn:hover {
    background: rgba(100, 150, 255, .1);
    color: #6496ff;
}

.p-tl-comment-btn .comment-icon {
    font-size: 13px;
    line-height: 1;
}

.p-tl-comment-btn .comment-count {
    font-size: 11px;
    font-weight: 600;
    min-width: 8px;
}

/* Comment Area */
.p-tl-comment-area {
    margin-top: 8px;
    padding: 8px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.p-tl-comment-list {
    max-height: 180px;
    overflow-y: auto;
    margin-bottom: 8px;
}

.p-tl-comment-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 3px 0;
    font-size: 11px;
    line-height: 1.5;
    flex-wrap: wrap;
}

.p-tl-comment-name {
    font-weight: 700;
    color: var(--fg);
    flex-shrink: 0;
    font-size: 10px;
}

.p-tl-comment-text {
    color: var(--fg-muted);
    word-break: break-word;
    flex: 1;
    min-width: 0;
}

.p-tl-comment-time {
    font-size: 9px;
    color: var(--fg-dim);
    flex-shrink: 0;
}

.p-tl-comment-del {
    background: none;
    border: none;
    color: var(--fg-dim);
    cursor: pointer;
    font-size: 10px;
    padding: 0 2px;
    opacity: 0;
    transition: opacity .2s;
}

.p-tl-comment-item:hover .p-tl-comment-del {
    opacity: 1;
}

.p-tl-comment-del:hover {
    color: #ff4d6d;
}

/* Comment Input */
.p-tl-comment-input-row {
    display: flex;
    gap: 6px;
    align-items: center;
}

.p-tl-comment-input {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 5px 12px;
    font-size: 11px;
    color: var(--fg);
    outline: none;
    transition: border-color .2s;
}

.p-tl-comment-input:focus {
    border-color: var(--accent);
}

.p-tl-comment-input::placeholder {
    color: var(--fg-dim);
}

.p-tl-comment-send {
    background: var(--accent);
    border: none;
    border-radius: 14px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
}

.p-tl-comment-send:hover {
    background: var(--accent-hover);
}

/* ===== INTERVIEW GRID (3 columns) ===== */
.p-interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.p-interview-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.p-interview-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.p-interview-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-card);
}

.p-interview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .3s;
}

.p-interview-card:hover .p-interview-img img {
    transform: scale(1.03);
}

.p-interview-img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 168, 74, .08), rgba(59, 130, 246, .05));
}

.p-interview-img--placeholder span {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--fg-dim);
    letter-spacing: 3px;
}

.p-interview-body {
    padding: 16px;
}

/* article text styles */
.p-article-cat {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.p-article-title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
    color: var(--fg);
}

.p-article-excerpt {
    font-size: 12px;
    color: var(--fg-muted);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.p-article-meta {
    font-size: 10px;
    color: var(--fg-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.p-article-meta .by {
    font-weight: 600;
    color: var(--fg-muted);
}

/* ===== SPEAKERS GRID ===== */
.p-speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@keyframes speakerCardReveal {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.p-speaker-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s, box-shadow 0.25s, background 0.25s;
    cursor: pointer;
    position: relative;
    
    /* 出現アニメーション用設定 */
    opacity: 0;
    animation: speakerCardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 順番にふわっと表示させる（Stagger Effect） */
.p-speaker-card:nth-child(1) { animation-delay: 0.05s; }
.p-speaker-card:nth-child(2) { animation-delay: 0.1s; }
.p-speaker-card:nth-child(3) { animation-delay: 0.15s; }
.p-speaker-card:nth-child(4) { animation-delay: 0.2s; }
.p-speaker-card:nth-child(5) { animation-delay: 0.25s; }
.p-speaker-card:nth-child(6) { animation-delay: 0.3s; }
.p-speaker-card:nth-child(7) { animation-delay: 0.35s; }
.p-speaker-card:nth-child(8) { animation-delay: 0.4s; }

.p-speaker-card .card-actions {
    justify-content: center;
    margin-top: 4px;
}

.p-speaker-card .card-comment-area {
    display: none;
}

.p-speaker-card .card-comment-area.show {
    display: flex;
    gap: 4px;
}

.p-speaker-card:not([style*="cursor:default"]):hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 74, 0.35);
    box-shadow: 0 12px 30px rgba(212, 168, 74, 0.08), 0 4px 10px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.p-speaker-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, .06);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.p-speaker-card:not([style*="cursor:default"]):hover .p-speaker-photo img {
    transform: scale(1.06);
}

.p-speaker-photo .initial {
    font-size: 20px;
    font-weight: 800;
    color: var(--fg-dim);
}

.p-speaker-info {
    min-width: 0;
}

.p-speaker-company {
    font-size: 10px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-speaker-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.p-speaker-summary {
    font-size: 10px;
    color: var(--fg-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== ARCHIVE GRID ===== */
.p-archive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.p-archive-card {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 18px;
    transition: all .3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.p-archive-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.p-archive-vol {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

.p-archive-date {
    font-size: 11px;
    color: var(--fg-muted);
}

/* ===== SPONSORS GRID ===== */
.p-sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.p-sponsor-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    text-decoration: none;
}

.p-sponsor-item img {
    height: 36px;
    opacity: .5;
    filter: grayscale(.4);
    transition: all .3s;
}

.p-sponsor-item:hover img {
    opacity: 1;
    filter: none;
}

.p-sponsor-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-dim);
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

/* ===== NEWSLETTER ===== */
.p-newsletter-section {
    border-bottom: none;
}

.p-newsletter-box {
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.p-newsletter-text {
    margin-bottom: 16px;
}

.p-newsletter-text p {
    font-size: 13px;
    color: var(--fg-muted);
    margin-top: 8px;
}

.p-newsletter-box .p-nl-form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
}

.p-nl-input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--fg);
    font-size: 13px;
    font-family: var(--font);
    outline: none;
    transition: border-color .2s;
}

.p-nl-input:focus {
    border-color: var(--accent);
}

.p-nl-input::placeholder {
    color: var(--fg-dim);
}

.p-nl-msg {
    margin-top: 8px;
    font-size: 11px;
    min-height: 14px;
}

/* ===== FOOTER ===== */
.p-footer {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.p-footer-brand {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.p-footer-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 10px;
}

.p-footer-links a {
    font-size: 10px;
    color: var(--fg-muted);
    text-decoration: none;
    transition: color .2s;
}

.p-footer-links a:hover {
    color: var(--accent);
}

.p-footer-copy {
    font-size: 9px;
    color: var(--fg-dim);
}

.p-footer-copy a {
    color: var(--fg-dim);
    text-decoration: none;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: all .5s cubic-bezier(.22, 1, .36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media(max-width:1100px) {
    .p-interview-layout {
        grid-template-columns: 1fr;
    }

    .p-timeline-side {
        padding-left: 0;
        padding-top: 20px;
        margin-top: 16px;
    }

    .p-interview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .p-archive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .p-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media(max-width:768px) {

    .p-nav-links,
    .p-nav-sep {
        display: none;
    }

    .p-navbar {
        padding: 0 10px;
        height: 44px;
    }

    .p-navbar-brand {
        font-size: 8px;
        gap: 3px;
        white-space: nowrap;
        min-width: 0;
        flex-shrink: 0;
        letter-spacing: 0.3px;
    }

    .beta-tag {
        font-size: 5px;
        padding: 1px 2px;
    }

    .p-nav-actions {
        gap: 4px;
        margin-left: auto;
        flex-shrink: 0;
    }

    .p-nav-login,
    .p-nav-register {
        font-size: 8px;
        padding: 4px 6px;
        white-space: nowrap;
    }

    .p-nav-cta {
        display: none;
    }

    .p-hero-inner,
    .p-wrap {
        padding: 0 16px;
    }

    .p-hero {
        padding-top: 56px;
        padding-bottom: 32px;
    }

    .p-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }

    .p-hero-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .p-hero-sub {
        font-size: 13px;
        line-height: 1.7;
    }

    .p-hero-actions {
        flex-direction: column;
        gap: 8px;
    }

    .p-hero-btns {
        display: none;
    }

    .p-interview-grid {
        grid-template-columns: 1fr;
    }

    .p-btn-ai-interview {
        width: 100%;
        justify-content: center;
    }

    .p-section-header-right {
        flex-direction: column;
        align-items: stretch;
    }

    .p-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-archive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-btn-primary,
    .p-btn-outline {
        width: 100%;
        justify-content: center;
        font-size: 13px;
    }

    .p-ticker-inner {
        gap: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: center;
        flex-wrap: wrap;
    }

    .p-ticker-num {
        font-size: 18px;
    }

    .p-next-card {
        margin-top: 0;
    }

    .p-interview-layout {
        grid-template-columns: 1fr !important;
    }

    .p-timeline-side {
        padding-top: 24px;
        margin-top: 16px;
        border-top: 1px solid var(--border);
    }

    .p-section {
        padding: 32px 0;
    }

    .p-section-title {
        font-size: 18px;
    }

    .p-newsletter-box {
        padding: 24px 16px;
    }

    .p-newsletter-box .p-nl-form {
        flex-direction: column;
    }

    .p-footer {
        padding: 24px 16px;
    }

    .p-footer-links {
        flex-wrap: wrap;
        gap: 8px 16px;
        justify-content: center;
    }

    .p-footer-links a {
        font-size: 11px;
    }

    .p-vpo-brand-label {
        font-size: 10px;
    }

    /* Speaker modal mobile */
    .p-modal-card {
        width: 95%;
        max-width: 95%;
        padding: 20px;
    }
}

@media(max-width:480px) {
    .p-hero-title {
        font-size: 24px;
    }

    .p-ticker-num {
        font-size: 16px;
    }

    .p-speakers-grid {
        grid-template-columns: 1fr;
    }

    .p-archive-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CONTENT LAYOUT WRAPPER ===== */
.p-content-layout {
    position: relative;
    z-index: 1;
}

/* ===== NEXT EVENT ICON ===== */
.p-next-icon-link {
    display: block;
    margin-top: 12px;
    text-decoration: none;
}

.p-next-icon-card {
    padding: 10px 16px;
    background: rgba(212, 168, 74, .08);
    border: 1px solid rgba(212, 168, 74, .2);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    transition: all .2s;
}

.p-next-icon-card:hover {
    background: rgba(212, 168, 74, .14);
    transform: translateY(-1px);
}

/* ===== SPEAKER MODAL ===== */
.p-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .7);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.p-modal-card {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
}

.p-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: var(--fg-dim);
    font-size: 18px;
    cursor: pointer;
    transition: color .2s;
    z-index: 1;
}

.p-modal-close:hover {
    color: var(--fg);
}

.p-modal-body .modal-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-light);
    margin-bottom: 16px;
}

.p-modal-body .modal-name {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.p-modal-body .modal-company {
    font-size: 13px;
    color: var(--fg-muted);
    margin-bottom: 16px;
}

.p-modal-body .modal-desc {
    font-size: 13px;
    line-height: 1.8;
    color: var(--fg-muted);
}

.p-modal-body .modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.p-modal-body .modal-tag {
    font-size: 10px;
    padding: 3px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--fg-dim);
}

/* ===== AI BADGE ===== */
.p-ai-badge {
    display: inline-block;
    padding: 1px 6px;
    font-size: 9px;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border-radius: 3px;
    margin-left: 4px;
    letter-spacing: .5px;
    vertical-align: middle;
}

/* ===== NEXT BADGE ROW ===== */
.p-next-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.p-next-event-icon {
    font-size: 9px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    padding: 2px 8px;
    border: 1px solid rgba(212, 168, 74, .3);
    border-radius: 100px;
    transition: all .2s;
}

.p-next-event-icon:hover {
    background: rgba(212, 168, 74, .1);
}

/* ===== TIMELINE HEADER ROW ===== */
.p-timeline-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.p-tl-post-btn {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s;
}

.p-tl-post-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(124, 58, 237, .3);
}

/* ===== TIMELINE COMPANY ===== */
.p-tl-company {
    font-size: 10px;
    color: var(--fg-dim);
    margin-top: -2px;
    margin-bottom: 4px;
}

/* ===== TIMELINE URL ===== */
.p-tl-url {
    margin-top: 6px;
}

.p-tl-url a {
    font-size: 10px;
    color: var(--blue);
    word-break: break-all;
    text-decoration: none;
}

.p-tl-url a:hover {
    text-decoration: underline;
}

/* ===== POST MODAL ===== */
.p-post-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.p-post-desc {
    font-size: 12px;
    color: var(--fg-muted);
    margin-bottom: 16px;
}

.p-post-textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--fg);
    font-family: var(--font);
    font-size: 13px;
    padding: 12px;
    resize: vertical;
    margin-bottom: 8px;
}

.p-post-textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.p-post-input {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--fg);
    font-family: var(--font);
    font-size: 12px;
    padding: 8px 12px;
    margin-bottom: 12px;
}

.p-post-input:focus {
    outline: none;
    border-color: var(--accent);
}

.p-post-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.p-post-cooldown {
    font-size: 11px;
    color: var(--red);
}

.p-post-msg {
    font-size: 12px;
    margin-top: 8px;
    color: var(--fg-muted);
}

/* ===== MODAL POSITION & HP ===== */
.p-modal-body .modal-position {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 2px;
}

.p-modal-body .modal-hp {
    margin-bottom: 12px;
}

.p-modal-body .modal-hp a {
    font-size: 11px;
    color: var(--blue);
    word-break: break-all;
    text-decoration: none;
}

.p-modal-body .modal-hp a:hover {
    text-decoration: underline;
}

/* ===== BADGE ROW ALIGNMENT FIX ===== */
.p-next-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.p-next-badge-row .p-next-badge {
    margin-bottom: 0;
}

/* ===== MODAL POSITION (no color override) ===== */
.p-modal-body .modal-position {
    font-size: 12px;
    color: var(--fg-muted);
    margin-bottom: 2px;
}

/* ===== MOBILE: HIDE HERO BUTTONS ===== */
@media (max-width: 768px) {
    .p-hero-btns {
        display: none !important;
    }
}

/* ===== VPO BRAND LABEL ===== */
.p-vpo-brand-label {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.p-modal-body .modal-company-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.p-modal-body .modal-hp-inline {
    font-size: 12px;
    color: var(--blue);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
}

.p-modal-body .modal-hp-inline:hover {
    text-decoration: underline;
}

/* ===== MODAL TAGS ORANGE ===== */
.p-modal-body .modal-tag {
    background: rgba(212, 168, 74, .15);
    color: var(--accent);
    border: 1px solid rgba(212, 168, 74, .3);
}

/* ===== AI INTERVIEW PAGE STYLES ===== */
.sp-cta-block {
    text-align: center;
}

.sp-cta-emoji {
    font-size: 32px;
    margin-bottom: 8px;
}

.sp-cta-heading {
    margin-top: 0;
}

.sp-cta-desc {
    margin-bottom: 16px;
}

.sp-cta-btn {
    margin-right: 8px;
}

.sp-cta-bottom {
    margin-top: 40px;
}

.sp-article-preview {
    text-align: left;
    padding: 28px 32px;
}

.sp-article-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sp-article-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.3;
}

.sp-article-meta {
    font-size: 12px;
    color: var(--fg-dim);
    margin-bottom: 20px;
}

.sp-article-q {
    font-size: 16px;
    font-weight: 800;
    color: var(--fg);
    margin: 20px 0 8px;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
}

.sp-article-a {
    font-size: 13px;
    line-height: 1.9;
    color: var(--fg-muted);
    margin-bottom: 16px;
}

.sp-article-quote {
    border-left: 3px solid var(--accent);
    padding: 10px 16px;
    margin: 16px 0;
    background: var(--accent-dim);
    border-radius: 0 6px 6px 0;
    font-style: italic;
    font-size: 13px;
    line-height: 1.8;
}

.sp-article-note {
    font-size: 12px;
    color: var(--fg-dim);
    text-align: center;
    margin-top: 8px;
}

.sp-card-list {
    padding-left: 16px;
    margin: 0;
    font-size: 12px;
    line-height: 1.8;
    color: var(--fg-muted);
}

/* ===== FIX: CTA button text clearly visible ===== */
.sp-cta-btn.p-btn-primary {
    color: #fff !important;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a84a, #b8892e) !important;
    border: none;
    padding: 12px 28px;
    font-size: 14px;
}

/* ===== NEXT EVENT SECTION (Hero下の独立セクション) ===== */
.p-next-event-section {
    position: relative;
    z-index: 1;
    padding: 32px 0 40px;
}

.p-next-event-wide .p-next-card {
    max-width: 960px;
    margin: 0 auto;
    padding: 36px 44px;
    text-align: center;
}

/* タイトル */
.p-next-card .p-next-badge-row {
    margin-bottom: 12px;
    justify-content: center;
}

.p-next-card .p-next-badge {
    font-size: 13px;
}

.p-next-card .p-next-vol {
    font-size: 32px;
    margin-bottom: 12px;
}

/* 日時・会場を1行 */
.p-next-meta-inline {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.p-next-meta-inline .p-next-meta-item {
    font-size: 15px;
}

/* ボタン */
.p-next-card .p-next-apply {
    display: block;
    margin: 24px auto 0;
    max-width: 400px;
    font-size: 15px;
    padding: 14px 32px;
    text-align: center;
}

/* 登壇予定起業家（4×2グリッド） */
.p-next-card-speakers .p-next-speakers-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 14px;
    text-align: center;
}

.p-next-card-speakers .p-next-speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.p-next-speaker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all .2s;
}

.p-next-speaker-item:hover {
    border-color: var(--accent);
    background: rgba(212, 168, 74, 0.05);
    transform: translateY(-1px);
}

.p-next-speaker-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-next-speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-next-speaker-avatar .initial {
    font-size: 16px;
    font-weight: 800;
    color: var(--fg-dim);
}

.p-next-speaker-info {
    min-width: 0;
    flex: 1;
}

.p-next-speaker-name {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-next-speaker-company {
    font-size: 11px;
    color: var(--fg-dim);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 2px;
}

/* Ticker inside Hero */
@keyframes tickerReveal {
    0% {
        opacity: 0;
        transform: scale(0.97) translateY(12px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.p-ticker--hero {
    margin: 28px auto 12px;
    padding: 0;
    border-top: none;
    border-bottom: none;
    background: none;
    display: flex;
    justify-content: center;
    animation: tickerReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.p-ticker--hero .p-ticker-inner {
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    padding: 10px 32px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}

.p-ticker--hero .p-ticker-inner:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 168, 74, 0.3);
    box-shadow: 0 15px 35px rgba(212, 168, 74, 0.12), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.p-ticker--hero .p-ticker-item {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.p-ticker--hero .p-ticker-item:hover {
    transform: scale(1.06);
}

.p-ticker--hero .p-ticker-num {
    font-size: clamp(28px, 3.5vw, 34px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    transition: color 0.3s, text-shadow 0.3s;
}

.p-ticker--hero .p-ticker-item:hover .p-ticker-num {
    color: var(--accent);
    text-shadow: 0 0 15px rgba(212, 168, 74, 0.5);
}

.p-ticker--hero .p-ticker-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.p-ticker--hero .p-ticker-dot {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .p-ticker--hero .p-ticker-inner {
        padding: 8px 18px;
        gap: 12px;
        border-radius: 20px;
    }
    .p-ticker--hero .p-ticker-inner:hover {
        transform: none;
    }
    .p-ticker--hero .p-ticker-num {
        font-size: 20px;
    }
    .p-ticker--hero .p-ticker-label {
        font-size: 10px;
    }
}

/* Next Event Section: responsive */
@media (max-width: 768px) {
    .p-next-event-section {
        padding: 16px 0;
    }

    .p-next-event-wide .p-next-card {
        padding: 20px 16px;
    }

    .p-next-card-speakers .p-next-speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .p-next-meta-inline {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .p-next-speaker-item {
        padding: 6px 10px;
    }

    .p-next-card-speakers .p-next-speakers-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ACTIVITY FEED CENTER SECTION ===== */
.p-activity-feed-section {
    padding: 32px 0;
}

.p-activity-feed-center {
    max-width: 960px;
    margin: 0 auto;
}

.p-activity-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.p-activity-feed-grid .p-tl-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px;
}

/* ===== Partners Section ===== */
.p-partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    align-items: stretch;
}

.p-partner-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 16px 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 200px;
    height: 70px;
    cursor: default;
    position: relative;
}

a.p-partner-banner {
    cursor: pointer;
}

.p-partner-flag {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 14px;
    height: 10px;
    z-index: 1;
    border-radius: 2px;
}

.p-partner-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.p-partner-banner img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 600px) {
    .p-partners-grid {
        justify-content: center;
    }
    .p-partner-banner {
        width: calc(50% - 8px);
    }
}

/* ===== SHARED HEADER CLS PLACEHOLDER ===== */
#shared-header {
    min-height: 60px;
    width: 100%;
}
@media (max-width: 768px) {
    #shared-header {
        min-height: 52px;
    }
}

/* ===== VPO BREADCRUMBS ===== */
.vpo-breadcrumbs-wrapper {
    width: 100%;
    box-sizing: border-box;
}
.vpo-breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 16px 0;
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
}
.vpo-breadcrumbs-item a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}
.vpo-breadcrumbs-item a:hover {
    color: var(--accent, #d4a84a) !important;
}
.vpo-breadcrumbs-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Sponsors Section Upgrade ===== */
.p-sponsor-tier-wrapper {
    margin-bottom: 24px;
}
.p-sponsor-tier-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.8;
}
.p-sponsor-grid-gold {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}
.p-sponsor-grid-silver {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.p-sponsor-grid-bronze {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.p-sponsor-banner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 150ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 150ms cubic-bezier(0.16, 1, 0.3, 1), border-color 150ms cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.p-sponsor-banner-card.gold {
    width: 100%;
    max-width: 630px;
    height: 90px;
    cursor: default;
    border-color: rgba(212, 168, 74, 0.25);
    background: linear-gradient(135deg, rgba(212, 168, 74, 0.05) 0%, rgba(17, 17, 22, 1) 100%);
}
.p-sponsor-banner-card.silver {
    width: 100%;
    height: 80px;
    cursor: default;
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(17, 17, 22, 1) 100%);
}
.p-sponsor-banner-card.bronze {
    width: 100%;
    height: 70px;
    cursor: default;
    border-color: rgba(205, 127, 50, 0.15);
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.03) 0%, rgba(17, 17, 22, 1) 100%);
}

.p-sponsor-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    user-select: none;
    text-align: center;
    width: 100%;
    padding: 12px;
}

.p-sponsor-badge {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.p-sponsor-badge.gold {
    color: #d4a84a;
    text-shadow: 0 0 10px rgba(212, 168, 74, 0.3);
}
.p-sponsor-badge.silver {
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
.p-sponsor-badge.bronze {
    color: #cd7f32;
    text-shadow: 0 0 10px rgba(205, 127, 50, 0.3);
}

.p-sponsor-recruiting {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1px;
}

.p-sponsor-banner-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.p-sponsor-banner-card.gold:hover {
    border-color: rgba(212, 168, 74, 0.5);
}
.p-sponsor-banner-card.silver:hover {
    border-color: rgba(255, 255, 255, 0.3);
}
.p-sponsor-banner-card.bronze:hover {
    border-color: rgba(205, 127, 50, 0.35);
}

@media (max-width: 768px) {
    .p-sponsor-grid-silver {
        grid-template-columns: 1fr;
    }
    .p-sponsor-grid-bronze {
        grid-template-columns: repeat(2, 1fr);
    }
    .p-sponsor-banner-card.gold {
        height: 80px;
    }
    .p-sponsor-banner-card.silver {
        height: 75px;
    }
    .p-sponsor-banner-card.bronze {
        height: 65px;
    }
}
@media (max-width: 480px) {
    .p-sponsor-grid-bronze {
        grid-template-columns: 1fr;
    }
}

/* ===== VPO PORTAL RENEWAL 2026 ===== */
.p-hero--renewal {
    padding: 80px 0 30px;
    text-align: center;
    background: radial-gradient(circle 600px at 50% 10%, rgba(212, 168, 74, 0.08) 0%, transparent 80%);
}
.p-hero-title--renewal {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.p-hero-sub--renewal {
    font-family: 'Inter', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    margin: 0 auto 36px;
    line-height: 1.75;
    letter-spacing: -0.01em;
}
.p-hero-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.p-btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    border-radius: 8px; /* 洗練された角丸 */
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s, box-shadow 0.25s, border-color 0.25s;
    letter-spacing: -0.01em;
}
.p-btn-hero--primary {
    background: linear-gradient(180deg, #f7d794 0%, #d4a84a 100%);
    color: #0b0b0f;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 12px rgba(0, 0, 0, 0.3);
}
.p-btn-hero--primary:hover {
    background: linear-gradient(180deg, #ffeaa7 0%, #eab543 100%);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35), 0 12px 30px rgba(212, 168, 74, 0.45);
}
.p-btn-hero--secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--fg);
}
.p-btn-hero--secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.p-hero-cta-micro {
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    font-size: 12px;
    color: var(--fg-dim);
    margin-top: -12px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.p-hero-mockup-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    perspective: 1000px;
}
.p-hero-mockup {
    background: #141419;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0,0,0,0.8);
    overflow: hidden;
    transform: rotateX(5deg);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-hero-mockup:hover {
    transform: rotateX(0deg);
}
.p-hero-mockup img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* 3大機能プレビュー */
.p-preview-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}
.p-preview-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    flex-wrap: wrap;
}
.p-preview-tab-btn {
    background: transparent;
    border: none;
    color: var(--fg-muted);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-preview-tab-btn:hover {
    color: var(--fg);
    background: rgba(255,255,255,0.04);
}
.p-preview-tab-btn.active {
    color: var(--accent);
    background: var(--accent-dim);
}
.p-preview-content {
    background: #141419;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 30px;
    min-height: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.p-preview-pane {
    display: none;
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-preview-pane.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}
@media (max-width: 768px) {
    .p-preview-pane.active {
        grid-template-columns: 1fr;
    }
}
.p-preview-text-col {
    text-align: left;
}
.p-preview-feature-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
}
.p-preview-pane h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    letter-spacing: -0.01em;
}
.p-preview-pane p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.7;
}
.p-preview-visual-col {
    background: rgba(255,255,255,0.02);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 16px;
    overflow: hidden;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.3);
}

/* ロール別メリット */
.p-roles-section {
    padding: 80px 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.p-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .p-roles-grid {
        grid-template-columns: 1fr;
    }
}
.p-role-card {
    background: #121216;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-role-card:hover {
    border-color: rgba(212,168,74,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}
.p-role-badge {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}
.p-role-badge.entrepreneur {
    color: var(--accent);
    background: var(--accent-dim);
}
.p-role-badge.investor {
    color: var(--blue);
    background: rgba(59, 130, 246, 0.1);
}
.p-role-badge.partner {
    color: var(--green);
    background: rgba(34, 197, 94, 0.1);
}
.p-role-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}
.p-role-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.p-role-features li {
    font-size: 13px;
    color: var(--fg-muted);
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.p-role-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* モバイル対応微調整 */
@media (max-width: 768px) {
    /* ヒーロー内の疑似モックアップの調整 */
    .p-hero-mockup > div:last-child {
        height: auto !important;
        min-height: 240px;
    }
    /* 疑似サイドバーをモバイルで非表示に */
    .p-hero-mockup > div:last-child > div:first-child {
        display: none !important;
    }
    
    /* プレビュータブボタンを横スクロール可能に */
    .p-preview-tabs {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox用 */
    }
    .p-preview-tabs::-webkit-scrollbar {
        display: none; /* Safari, Chrome用 */
    }
    .p-preview-tab-btn {
        font-size: 12px;
        padding: 6px 14px;
        flex-shrink: 0;
    }
    /* モバイル時のトグルボタン幅を調整 */
    .p-hero-segment-btn {
        width: 140px !important;
        font-size: 11px !important;
        padding: 8px 0 !important;
    }
}

/* ヒーローエリア内のセグメント切り替えタブ */
.p-hero-segment-tabs {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4px;
    margin: 0 auto 32px auto;
    position: relative;
}
.p-hero-segment-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--fg-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    width: 200px; /* 固定幅にすることで左右のバランスを統一 */
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-hero-segment-btn:hover {
    color: #fff;
}
.p-hero-segment-btn.active {
    background: var(--accent);
    color: #121216;
}

/* ヒーロータブコンテンツパネル */
.p-hero-tab-contents {
    position: relative;
    width: 100%;
}
.p-hero-tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.p-hero-tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Startup Dashboard 機能紹介セクションのスタイル */
.p-dashboard-intro-section {
    position: relative;
    width: 100%;
}
@media (max-width: 768px) {
    .p-dashboard-intro-section {
        padding: 50px 0 40px !important;
    }
    .p-next-event-section {
        padding: 30px 0 40px !important;
    }
}

/* アンカースムーズスクロールおよびヘッダー被り防止 */
html {
    scroll-behavior: smooth;
}
.p-next-event-section,
.p-dashboard-intro-section,
.p-preview-section,
.p-roles-section {
    scroll-margin-top: 80px; /* 固定ヘッダーの高さ60px + 余白 */
}